Print Output in PHP
PHP provide some function to print output to the browser. Which is often to be used is print() and echo().
print() has a return value 1. But echo doesn’t have return value. That’s why echo is more faster than print();
Example :
<?
print “Hello”;
echo “String 1″;
?>