I am triying to get data from a website but I get the "Please Enable Cookies"
my code
PHP Code:
$url = 'http://mysite.com';
$data = LoadCURLPage($url);
$string_one = '<title>'; $string_two = '</title>';
$info = extract_unit($data, $string_one, $string_two);
echo 'title '.$info;
any idea to by pass the coockies
Last edited by moussa854; 04-30-2009 at 03:49 PM..
|