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>


No comments:

Post a Comment