Ben bunu bir kimlik vererek verileri getirir kodu bir parça var. Örneğin ben o 1230 bir kimlik verirseniz, kodu web sitesinde (harici) den 1.230 kimliği olan bir makale veri getirir ve bir DB takın.
Now, the problem is that I need to fetch all the articles, lets say from ID 00001 to 99999.
If a do a 'for' loop, after 60 seconds the PHP internal time limit stops the loop.
If a use some kind of header("Location: code.php?id=00001")
or header("Location: code.php?id=".$ID)
and increase $ID++ and then redirect to the same page the browser stops me because of the infinite loop or redirection problem.
Lütfen YARDIM!