What will be the output of the following PHP code ?
<?php
define("GREETING", "PHP is a scripting language");
echo $GREETING;
?>
<?php
define("GREETING", "PHP is a scripting language");
echo $GREETING;
?>
A. $GREETING
B. no output
C. PHP is a scripting language
D. GREETING
Answer: Option B

Join The Discussion