>>718
<?php
$time = '10:00';

echo ampm($time);

function ampm($ntime){
if($ntime >= '12:00'){
return 'PM';
}else{
return 'AM';
}
}
?>