Difference between revisions of "PHP text generation"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
Line 12: Line 12:
  
 
* [[PHP]]
 
* [[PHP]]
 +
 +
 +
[[Category:PHP]]
 +
[[Category:Text]]

Revision as of 19:28, 24 April 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.

See also