I need to add 12 hours to a time stored in a text variable in the format H:MM (i.e. its 1:30 not 01:30).
if($_POST['ampm']=='pm')
{ $mysql_visit_time=$_POST['time'] + 12; } //ADD 12 hours if it is a PM time HOW HOW HOW this obviously wont work...
else
{ $mysql_visit_time=$_POST['time']; }
And Ideas? The $_POST['time'] var can not be changed......