<!DOCTYPE unspecified PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
</html>
<body>
<?php
include 'sendMail.php';
echo date('h:i:s');
echo "<br/>";
$myarray = array();
array_push($myarray, "a", "b");
array_push($myarray, "c");
foreach ($myarray as $value) {
echo "Value: " . $value . "<br />";
}
for ($i=0; $i<count($myarray); $i++) {
echo "Value: " . $myarray[$i] . "<br />";
}
echo "<br/>";
echo date('h:i:s');
?>
</body>
</html>