Print in PHP
Advertisements
Print in PHP
In php there are two way 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
<?php print "<h2>My First php! </br></h2>"; print "Hello world!<br>"; ?>
Output
My First php
Hello world!Print Variable value using echo
Syntax
<?php $str1="PHP Tutorial!"; $str2="sitesbay.com"; $a=10; $b=20; print "<h2$gt;$str1</h2>"; print "Learn PHP at $str2<br>"; print $x + $y; ?>
Output
PHP Tutorial
Learn PHP at sitesbay.com 20Google Advertisment