Output value of a variable wit print function : print « Utility Function « PHP
- PHP
- Utility Function
- print
Output value of a variable wit print function
$total = 123.123;
print "Total cost of the meal is \$$total";
Related examples in the same category