"> What will be the output of the following PHP code ?<?php

Home » PHP » PHP Syntax » Question
  1. What will be the output of the following PHP code ?
    <?php
    # echo "Hello interview Mania";
    echo "# Hello interview Mania";
    ?>
    1. Hello interview Mania
    2. Error
    3. Hello interview Mania
      # Hello interview Mania
    4. # Hello interview Mania
    5. None of these
Correct Option: D

# is a single line comment.



Your comments will be displayed only after manual approval.