Thursday 25 August 2011

PHP - Outputting text

For outputting text, we can used the PHP command like echo or print

For Example:-


<?php
$string = "Hello";
echo $string;
?>
 
It will give the output on the browser window
Hello 

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...