Say i want to grab the logged in user on this site, i cant grab what i want without grabing the whole page.
PHP Code:<?
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://www.vbforums.com');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($ch);
echo $data;
curl_close($ch);
?>


Reply With Quote
