Showing posts with label echo statement. Show all posts
Showing posts with label echo statement. Show all posts

Tuesday, October 11, 2011

echo statement

Echo statement is used to print something on response stream.


Code Example:

<html>
    <body>
      <?php
          echo 'hello  world';
      ?>
    </body>
</html>


Above code is same as following:

<html>
<body>
   hello  world
</body>
</html>