Thread: Volunteer
View Single Post
  #14 (permalink)  
Old 08-16-2006, 01:00 AM
John's Avatar   
John John is offline
Co-Administrator
 
Join Date: Jul 2006
Age: 20
Posts: 3,568
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

eh after figuring out how to set my own headers that didnt work either, however using a proxy worked, perhaps my host blocks outgoing secure connections? i dunno

PHP Code:
<?php
$ch 
curl_init();
curl_setopt($chCURLOPT_URL"https://www.novaworld.com/Players/Stats.aspx?id=33680801261&p=616065");
curl_setopt($chCURLOPT_HEADER0);
curl_setopt($chCURLOPT_PROXY'193.194.69.66:8080');
curl_setopt($chCURLOPT_SSL_VERIFYPEERFALSE);
curl_exec($ch);
curl_close($ch);
?>
Reply With Quote