How to send output to the client via PHP?

PHP is the basis of various marvelous scripts which might support a wide range of applications, websites and tools. At a certain point though the script output needs to reach the client. Sending the output to your client can be realized by means of echo. For example: echo $number; which will output the variable $number value.



Was this useful?