I am using a simple_html_dom script to parse a value from a website.
My code is:
<?php include('simpleparser/simple_html_dom.php'); $html = file_get_html('http://www.example.com'); foreach($html->find('strong') as $e)
Now I would like to run this only once a day as data, I analyze updates only once every day.
I read a couple of articles about the cron task, but I can't get it to work. The examples seem to complicate things too much and are irrelevant to my case. In my hosting plan, the cron scheduler is disabled and there is no access to the shell, and I do not know how else to configure it.
source share