Hi,
I want to convert a time value to display in this format mm:ss. ie. I have a value say 15 seconds and I want it to display as follows: 00:15. Is there a quick php function to do this?
Thanks
This will work for values up to 59:59. Above that it will roll over to 00:00 and start incrementing again:
$seconds = 85; echo gmdate("i:s", $seconds); // outputs "01:25"