I have a time related php question!
I have html input boxes that asks the user for minutes and seconds like so:
<input type="text" name="n" size="2">minutes
<input type="text" name="s" size="2">seconds
and the result gets posted into a php file
I need a way to calculate the minutes + seconds into seconds. So basically, if the user inputted 2min 3sec, i need the output to be 123
in the php file, i have something like this:
$m = $_POST["min"];
$s = $_POST["sec"];
$output = total in seconds ?
I am assuming I can do something like:
$n x 60 + $s
to get the total but I am having a bit of trouble
thanks for the help!