SyntaxFix
Write A Post
Hire A Developer
Questions
To add to the answers above, while print can only take one parameter, it will allow for concatenation of multiple values, ie:
$count = 5; print "This is " . $count . " values in " . $count/5 . " parameter";
This is 5 values in 1 parameter