Dynamic Cron job
my api parsing script has dynamic url, like
scriptname.php?limit=100
here this last 100 will change;varying from 0 to the number of lines from the file returned by first cron.
And i want to this script to execute as a cron job, but how this parameter 'limit' i should handle.
any posts regarding this dynamic cron url will be much appreciated.
Please ask to clarify if not clear enough.
network18
Practically a Master Poster
619 posts since Sep 2009
Reputation Points: 29
Solved Threads: 76
You can't pass url parameters to a php script through cron.
If you need to store something to be used in a cronjob later, your best bet would be either to use a database or a text file.
kkeith29
Nearly a Posting Virtuoso
1,357 posts since Jun 2007
Reputation Points: 235
Solved Threads: 194
yes, i am aware of it, but i need to tackle this situation in some way.
I am getting some feeling that it will work that way,about your suggestion for using another text file, for storing what is to be used in the cron url.
can you elaborate it further
network18
Practically a Master Poster
619 posts since Sep 2009
Reputation Points: 29
Solved Threads: 76
just got something like 'php GetOpt package' but is there anything simpler than it?
network18
Practically a Master Poster
619 posts since Sep 2009
Reputation Points: 29
Solved Threads: 76
thanks kkeith29, now i did the same.
simply created a table which will have all the id/line numbers after insert done by the script.
So i dont need to pass the parameter in the url anymore and the script is cron compatible too.
closing the thread.thanks again
network18
Practically a Master Poster
619 posts since Sep 2009
Reputation Points: 29
Solved Threads: 76