L LeonhartGR Guest Jun 19, 2013 #1 Can someone tell me how to modify this code and how to make a gif to countdown 14:50 minutes
N nfitc1 Guest Jun 19, 2013 #2 I'd say modify line 28 of gif.php Code: [Select] Code: for($i = 0; $i <= 60; $i++){ to Code: [Select] Code: for($i = 0; $i <= (14 * 60 + 50); $i++){
I'd say modify line 28 of gif.php Code: [Select] Code: for($i = 0; $i <= 60; $i++){ to Code: [Select] Code: for($i = 0; $i <= (14 * 60 + 50); $i++){
B Bosola Guest Jun 23, 2013 #4 Sounds like something that should be passed as parameters to a function.