|
Posted by Aaron on 03/27/07 14:29
I'm working on a program the goes out to a website and pulls down some
data using cURL. The page I'm pulling from has a loading screen
before the data I want is displayed. The code I have so far is
grabing this loading page instead of the fullly loaded page. Is there
anything I can do? Below is the code I have so far.
$ch= curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL,$url);
$result = curl_exec($ch);
Navigation:
[Reply to this message]
|