Hi all,
If the user selects 00 from the below option then this code sees it as an error. How can I get it to allow 00?
Thanks.
if((!$hr_start) || ($hr_start == "0") || (!$min_start) || ($min_start == "0"))
{
$error_message['time_start'] ='<p>Please Select a Time</p>';
}
<option value="0">Minute</option>
<option value="00">00</option>