I want to fetch a certain link at every 30 seconds interval and parse it’s code in my program. Is there a way to do this?
I need to obtain certain things found in it’s code that always change at fixed intervals.
I’ve tried using an iframe and getting it’s innerHTML but that doesn’t work also php’s file_get_contents() doesn’t work.
Could you try using this?
http://davidwalsh.name/download-urls-content-php-curl
The code
Then call with
(Credit to DAVID WALSH)