My site has a function which can accept a number of parameters for displaying images. The way it is currently set up, is when a specific request for images is made (as a GET request to the script with a number of arguments), a MySQL query is made, then the query results are cached in a file so subsequent identical requests don't hit the DB but get the cache file instead (it makes things WAY faster). The cache expires after 8 hours. I wanted to expand on this concept so I created a php script that will make a number of requests to the image script on a scheduler every 8 hours. I am currently using file_get_contents and it does work in my browser, and I intend to run it as a cron job which means it will get called from Unix scheduler. In its most basic form it looks like this:
echo file_get_contents('http://www.blabla.com/images.php?action=getpics&imagetype=recent& per_page=60&page=1&orderby_view=0&tag_filter=trees');
It does work but is there a better or more elegant/safe way to do this? Eventually I will loop the arguments so multiple GETs are made so the most general searches get cached.