<html>
<head>
<title>Merit Badge Test</title>
<style>
body {
font-family: Helvetica, sans-serif;
margin: 10px;
background-color: #D6CEBD;
color: #003F87;
}
</style>
</head>
<body>
<h2>What Time Is It?</h2>
<?php
$now = getdate();
$num_minutes = $now['minutes'];
$num_seconds = $now['seconds'];
$remaining_seconds = 60 - $num_seconds;
echo "The time is " . date("h:i:sa");
if ($num_seconds < 30) {
echo '<p>First half of the minute!</p>';
} else {
echo '<p>Second half of the minute!</p>';
}
echo "There are " . $remaining_seconds . " seconds before the minute is over.<br>";
echo "<hr/>";
echo "<ul>";
for ($i = 0; $i < 10; $i++) {
echo "<li>Counting: " . $i . "</li>";
}
echo "</ul>";
?>
</body>
</html>