View Single Post
Old 04-17-2012, 06:41 AM  
pimpware
Confirmed User
 
pimpware's Avatar
 
Join Date: Jan 2006
Location: Pt
Posts: 1,673
What about using this? I guess it will do it faster and safer(right?)

PHP Code:
<?php
$ch 
curl_init();
$timeout 5// set to zero for no timeout
curl_setopt ($chCURLOPT_URL'http://yourdomain.com/blogroll.php');
curl_setopt ($chCURLOPT_RETURNTRANSFER1);
curl_setopt ($chCURLOPT_CONNECTTIMEOUT$timeout);
$file_contents curl_exec($ch);
curl_close($ch);

// display file
echo $file_contents;
?>
__________________
icq: 284494832
realsexforyou.com
pimpware is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote