Two sites on different hosts
site one: includes a file from site two. site two regulary goes down, how do i prevent site one from hanging?
$fp = @fopen("http://www.sitetwo.com/file.php","r");
if ($fp)
{ include("http://www.sitetwo.com/file.php"); }
else
{ echo""; }
essexboy