Difference between revisions of "PHP text generation"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) |
Karl Jones (Talk | contribs) m (Karl Jones moved page Generating text (PHP) to PHP text generation) |
(No difference)
|
Revision as of 18:05, 19 September 2016
In PHP, text is commonly generated using the echo() function.
print()
The print() function also generates text.
echo() versus print()
The echo() and print() functions are essentially the same, with echo() being more coming in my experience.