Q. What will be the output of the following PHP code?
Code:
<?php
define('IF', 102);
echo "IF: ", IF;
?>
β
Correct Answer: (A)
Error
<?php
define('IF', 102);
echo "IF: ", IF;
?>
You must be Logged in to update hint/solution