Saturday 21 May 2011

This is the first program .

// If you are a  php learner this program will help you.to view "HELLO PHP" through your browser.
//This is first program of php
<html>
<body bgcolor= "cornsilk"text="blue">
<div>
<?php
function cmc()
 {
   echo"<h1>HELLO PHP</h1>";
 }
  $p= cmc();
  $p;
?>
</div>
</body>
</html>
Welcome to  PHP