| | i found this on php.net, and it worked for a little while, and now it doesnt work. i changed some of it trying to fix it, but it always returns false. CODE function url_exists($url){ if(!strstr($url, "http://")) { $url = "http://".$url; }; $fp = @fsockopen($url, 80); if($fp === false) { return 'false'; } else { return true; }; }; |


