Register now or log in to join your professional community.
No one explain better than following article :)
The echo outputs one or more strings.
Here is a simple example:
<?php
$str = "Hello world!";
echo $str;
?>
The result will be Hello world! displayed on the screen.more
Cheers!
echo