Difference between revisions of "PHP text generation"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (Created page with "In PHP, text is commonly generated using the '''echo()''' function. TO DO: example. == print() == The '''print()''' function also generates text. == echo() versus prin...") |
Karl Jones (Talk | contribs) |
||
Line 1: | Line 1: | ||
In [[PHP]], text is commonly generated using the '''echo()''' function. | In [[PHP]], text is commonly generated using the '''echo()''' function. | ||
− | |||
− | |||
== print() == | == print() == |
Revision as of 10:44, 2 January 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.