Qhimm.com Forums

Off-topic forums => Completely Unrelated => Topic started by: LeonhartGR on 2013-06-19 15:11:56

Title: How to modify this code?
Post by: LeonhartGR on 2013-06-19 15:11:56
Can someone tell me how to modify this code (https://gist.github.com/SeanJA/4159063) and how to make a gif to countdown 14:50 minutes
Title: Re: How to modify this code?
Post by: nfitc1 on 2013-06-19 16:44:43
I'd say modify line 28 of gif.php

Code: [Select]
for($i = 0; $i <= 60; $i++){
to

Code: [Select]
for($i = 0; $i <= (14 * 60 + 50); $i++){
Title: Re: How to modify this code?
Post by: LeonhartGR on 2013-06-20 00:34:37
Thanks!
Title: Re: How to modify this code?
Post by: Bosola on 2013-06-23 17:00:26
Sounds like something that should be passed as parameters to a function.