Hi Everyone...
I have the following php to check against two vars... $minute & $second
I am making a new var out of the above
$fgt = $minute. "" .$second;
if((strstr($fgt,"45:00")))
{
$hint = 'Error';
registerError( $hint, $hint, $error_title, '<h3>Error - Goal Time Can Not Be Greater Than <strong>(45:00)</strong></h3>' );
$b1=false;
}
On my form, Users can select from minute 01: (from 1-90)
and select seconds also (from 00 to 59)
I am trying to catch and display an error message to the user if they select 45 minutes and any number of seconds above 00
So if the user selects ( 45:01 - 45:59 ) I would like to display the error message to them...