Thread: Volunteer
View Single Post
  #17 (permalink)  
Old 10-01-2006, 01:51 AM
John's Avatar   
John John is offline
Co-Administrator
 
Join Date: Jul 2006
Age: 20
Posts: 3,569
Last Blog:
Tidy up your HTML
Credits: 0
Rep Power: 20
John has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond reputeJohn has a reputation beyond repute
Send a message via AIM to John Send a message via MSN to John
Default

Quote:
Originally Posted by Jordan View Post
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($chCURLOPT_URL,$url);
   
curl_setopt($chCURLOPT_VERBOSE1);
   
curl_setopt($chCURLOPT_POST0);
   
curl_setopt($chCURLOPT_USERAGENT,  "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
   
curl_setopt($chCURLOPT_SSL_VERIFYPEER0);
   
curl_setopt($chCURLOPT_SSL_VERIFYHOST0);
   
curl_setopt($chCURLOPT_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
Reply With Quote