<?php

for($i=0;$i<25;$i++){
    $temp = str_pad($i,2,"0",STR_PAD_LEFT);
    $start = "2012-10-01 ".$temp.":00:00";
    echo $start.'<br/>'; 
}