+ 1
How to write double constants
Hey i want to write username - john And age - 28 but how help <?php define("username""age", " john! ,28"); echo username ; ?>
3 Answers
+ 2
What do you mean by double constant?
Just use two defines:
define("username", "john");
define("age", 28);
+ 2
i doubt this is even how that code should work....
+ 1
Thanks