Thursday, September 25, 2014

First basic php tutorial V2

 <html>  
 <head>  
      <title>first php page</title>  
 </head>  
 <body>  
      hi there!<br>  
      <?php  
           echo "Dipen!<br>";  
           echo "The date was";  
           echo date("m/d/y");  
           echo"?";  
      ?>  
      <br>  
      ok.... I'm now not in a script<br>  
      did you that the time was<? echo date("h:i:s a");?>  
      Your IP address was:<? echo getenv("REMOTE_ADDR");?>  
 <body>   
 </html>  

No comments:

Post a Comment