Quote:
Originally Posted by Jordan
|
as i suspected, and to just text my hypothsis, if you dont mind try this one
PHP Code:
<?php
$url = "https://adwords.google.com/select/Login";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_POST, 0);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$returned = curl_exec($ch);
curl_error($ch);
curl_close($ch);
echo $returned;
?>
i suspect it will work, but have no idea why it dosnt work for the other url
