0
why when i put false in the program, it outputs error?
4 Réponses
+ 1
Please post your code if you want help.
+ 1
Constant names are case sensitive if you use false here.
<?php
define("MSG", "Hi SoloLearners!", false);
echo MSG;
?>
0
<?php
define("MSG", "Hi SoloLearners!",false);
echo msg;
?>
0
thank you !