PHP-ECHO

How to Print value in PHP By using Echo and Print command: -



echo Method: -


<?php

echo "Welcome to PHP Program"."<br>";
echo "<br>";
echo "am from echo method";


?>


Output: -

Welcome to PHP Program
am from echo method

Print Method: -

<?php
print "Hello am from print method";

?>

Output: -

Hello am from print method




Comments

Popular posts from this blog

jQuery-Banner

JQUERY-BANNER-FADEIN AND FADEOUT

Static Web site Creating By Using Tables