how can i get the time to show with two zeros in a drop down field. If the time in the database is 7:00 it shows in the menu as 7:0
<select name="minute">
<?
for ($x=00;$x<=59;$x++)
{
if ($x==date('i',$row[date]))
{
echo"<option value=".$x." selected='selected'>".$x."</option>";
} else {
echo"<option value=".$x.">".$x."</option>";
}
}
?>
</select>