on StackOverflow I found out how to check if just one url exist:
if (@fopen($url,'r')){
echo 'Exist';
}
else {
echo 'Does not exist';
}
How to use this with an array and perhaps with the while loop?
So that I can check for more than 1 URL.
For example, so that it can check 50 URLs?