Print.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>PHP</title>
</head>

<body>
<?php 

$student
="Raul Garcia";
print(
"$student<br />");

$number1=10;    //This money I won in the lotery
$number2=15;    //This money I found in the floor
$number3=5;        #This money was under my bed

$total=$number1+$number2+$number3;
/*
This part
shows the text 
in the page
*/
print("The sum of the numbers is ".$total."<br />");

print(
"I have ".($number1+$number2+$number3)." dollars!")

?>
</body>
</html>