« Welcome to Tutorials 4 PHP
How to put comments in php »


Hello world in php

Posted by chaabant on Dec 26, 2007

Those are some ways to make a Hello world in php

  1. <?
  2. echo " Hello world !" ;
  3. ?>

Hello world in php using Variables

  1. <?
  2. $txt = "Hello World !" ;
  3.  
  4. echo $txt ;
  5. ?>

Hello world in php using Functions

  1. <?
  2.  
  3. function hello () {
  4.  
  5. echo " Hello World !! ";
  6.  
  7. }
  8.  
  9. hello();
  10. ?>
Leave a Reply

You must be logged in to post a comment.