0
Variable
This variable going to on head plz someone help me.
1 Réponse
+ 4
Clear your question,
If you talk about what is difference between constant and variables, then.
We can append or prepend or edit any variable while in constant we cannot.
{{ <?php
$var = 'Hello';
echo $var;//outputs Hello
$var = $var . '!';
echo $var;//outputs Hello!
?> }}