<html>
<head>
<title>This my second PHP page</title>
</head>
<body>
<h1>PHP expression</h1>
<?php
print "Numeric..: 5 times 6 is ";
$num = 5 * 6;
print "$num";
print "<br/>";
print "String......: My name is ";
$firstName = "Sam";
$fullName = $firstName . "Sultan";
print $fullName;
?>
<br/>
<p><b>...and here you have. That is it.</b></p>
<?php include "zCode/include.php"; ?> <!-- hyperlink to see the code -->
</body>
</html>