Hi, is there anyway of doing this:
Say i had a min time of 08:00 hours and an end time of 23:00 hours. How could i make it increase in time according to a variable value, say 20 mins.
08:00
08:20
08:40
09:00
II
VV
23:00
Any ideas??
Regards,
Martin
Computing Help And Info:
Say i had a min time of 08:00 hours and an end time of 23:00 hours. How could i make it increase in time according to a variable value, say 20 mins.
08:00
08:20
08:40
09:00
II
VV
23:00
Code:
$min = "08:00";
$max = "23:00";
$step = 20;
Any ideas??
Regards,
Martin
Computing Help And Info: