Thanks, do you have any actual code though?
This is what I'm working with right now --
$execute = mysql_query("SELECT url,id FROM passwords WHERE dateadded >= '".date('H:i:s',mktime(date('i')-15))."' ORDER BY id ASC");
while($row = mysql_fetch_array($execute)) {
if(!($file = fopen($row[url],"r"))) {
$delete = "dead";
}
else {
$delete = "alive";
}
print($row[url]." ($deleted)<br>");
}
Sadly that actual code isn't working and I can't figure it out.
Doesn't give an error necessarily, usually just times out or says everything is dead while in reality it isnt.