Hey guys,
This should be simple but I'm obviously missing something ...
Take a website say ...
http://username:password@website.com
And if the site lets you in it says "alive".
If not "dead".
So something like
while(loop over mysql) {
if($site = fopen("http://username:password@website.com","r")) {
$link = "alive";
}
else {
$link = "dead";
}
}