PHP text generation
From Wiki @ Karl Jones dot com
Revision as of 19:01, 19 September 2016 by Karl Jones (Talk | contribs)
The PHP programming language provides several ways to generate text.
The echo function is the most common way.
In a PHP-based web application, generated text becomes part of the response that the web server return to the client.
echo()
A simple echo:
<?php echo "Hello World"; ?>
The print() function also generates text.