Pages - Menu

Wednesday 4 July 2012

PHP small program

Here ,
we learn some PHP small program like sum ,display and some other...


<html>
<body>

<?php
echo "hello<br>"; //for display hello


 echo (5 + 3)."<br>";  //doing some u just change the just sign...
// display the  value
$abc=10;
echo "the value of".$abc."<br>";
printf("the value is : %d",$abc);

?>

</body>
</html>

No comments:

Post a Comment