Difference between revisions of "PHP text generation"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(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...")
(No difference)

Revision as of 13:30, 6 September 2015

In PHP, text is commonly generated using the echo() function.

TO DO: example.

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.

See also