Thread: Volunteer
View Single Post
  #15 (permalink)  
Old 09-30-2006, 06:55 PM
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

Jordan, could you do me a favor and test these 2 scripts on one of your servers please and let know if either or one of them works.

PHP Code:
<?php
$url
"https://www.novaworld.com/Players/Stats.aspx?id=33680801261&p=616065";
$content file_get_contents($url);
echo 
$content;
?>
PHP Code:
<?php
   $url 
"https://www.novaworld.com/Players/Stats.aspx?id=33680801261&p=616065";

   
$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;
?>
thanks
Reply With Quote

Sponsored Links