Check if url is exist or notI've website where visitor would submit links so i would like of the posted url is exist or not so i've been using the following function function url_exist($url){ $c=curl_init(); curl_setopt($c,CURLOPT_URL,$url); curl_setopt($c,CURLOPT_HEADER,1); curl_setopt($c,CURL
[ More ]