<html>
<!-- hello_funct.php
adapted from example from Ann Burroughs
adapted by: Sharon Tuttle
last modified: 4-17-06
-->
<head>
<title> playing with functions, part 2 </title>
</head>
<body>
<h2> playing with functions, part 2 </h2>
<h3>
<?php
// odd, but Ann wrote this way ---
// NOT sure I like the style!!
sayHello();
sayHello();
sayHello();
function sayHello()
{
print "Hello, world!";
}
?>
</h3>
</body>
</head>