Using Print in PHP: Outputting Content to the Web
☰Fullscreen
Table of Content:
In PHP there are two ways to get your output on screen they are; echo and print.
Difference between echo and print
echo has no return value while print has a return value of 1 so it can be used in expressions.
Print String using echo
Syntax:
My First php! "; print "Hello world!
"; ?>
Output:
My First php Hello world!
Print Variable value using echo
Syntax:
"; print "Learn PHP at $str2
"; print $x + $y; ?>
Output:
PHP Tutorial Learn PHP at atnyla.com 20