I would like to know if, and how, I can call or execute what otherwise would be known as a cron job
If I were to enter this crontab through my host cron manager interface it would look like:
wget "http://somedomain.com/index.php?option=csome_option&view=some_view&key=some_key&format=some_format"
Is it possible to run this http call everytime a page is loaded (using PHP)?
I do not want to display the outcome of this call, but rather simply execute what this call would get going if I were to call directly through a browser, but (inevitably sounding redundant) without displaying simply executing behind the curtains on cue from page load.
Thank you,