Forum: PHP Aug 25th, 2009 |
| Replies: 8 Views: 315 >Sorry to all if this is in the wrong forum
If your script is written in PHP, and your question is related to PHP/your script, then I would say that it's in the correct forum. |
Forum: PHP May 21st, 2009 |
| Replies: 2 Views: 206 for($i = 86400; $i < 604900; $i + 86400)
has to be
for($i = 86400; $i < 604900; $i += 86400)
(otherwise your loop index always stays 86400 :))
:P |