Q. What will be the output of the following PHP code?
Code:
<?php
define("GREETING", "PHP is a scripting language");
echo $GREETING;
?>
β
Correct Answer: (B)
no output
<?php
define("GREETING", "PHP is a scripting language");
echo $GREETING;
?>
You must be Logged in to update hint/solution