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>