Author Topic: How to modify this code?  (Read 3200 times)

LeonhartGR

  • *
  • Posts: 2577
  • ~Whatever...~ Enjoy life!
    • View Profile
    • LeonhartGR Productions
How to modify this code?
« on: 2013-06-19 15:11:56 »
Can someone tell me how to modify this code and how to make a gif to countdown 14:50 minutes

nfitc1

  • *
  • Posts: 3013
  • I just don't know what went wrong.
    • View Profile
    • WM/PrC Blog
Re: How to modify this code?
« Reply #1 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++){

LeonhartGR

  • *
  • Posts: 2577
  • ~Whatever...~ Enjoy life!
    • View Profile
    • LeonhartGR Productions
Re: How to modify this code?
« Reply #2 on: 2013-06-20 00:34:37 »
Thanks!

Bosola

  • Fire hazard!
  • *
  • Posts: 1749
    • View Profile
    • My YouTube Channel
Re: How to modify this code?
« Reply #3 on: 2013-06-23 17:00:26 »
Sounds like something that should be passed as parameters to a function.