PHP text generation

From Wiki @ Karl Jones dot com
Revision as of 20:01, 19 September 2016 by Karl Jones (Talk | contribs)

Jump to: navigation, search

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";
?>

print

The print() function also generates text.

See also