the original post said hour and minute only, so do you know want date?
otherwise--
if($$_SESSION['event']['eventStart_ampm']=='PM'){
$_SESSION['event']['eventStart_h']=$_SESSION['event']['eventStart_h']+12;
}
$time=$_SESSION['event']['eventStart_h'].':'.$_SESSION['event']['eventStart_m'];
$sql="INSERT in to foo set time='$time' WHERE bar";
to get it back
select from foo TIME_FORMAT(time, '%H') as hour, TIME_FORMAT(time, '%i') as minute, TIME_FORMAT(time, '%p') as am_pm