Hello,
I am using php to check if a URL is available using th if file exists function.
if(file_exists("http://www.domain.jsp"))
{
$lines = file('http://www.domain.jsp');
}else{
$lines= echo $variable
}
But it keeps giving me errors...is there an alternative to if file exists?
Thanks