// 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>
//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>
No comments:
Post a Comment