Wait.. do you want only those 2 pairs (login server, aol legends), or all 14 pairs? (I'm looking at pairs as the text and image)
Some "Quickie Code" (untested)
PHP Code:
// suck the remote file into a string
$remote_site = join('', file("http://remote.domain.com/index.php") );
preg_match_all(
"|<tr>(.*)<a name=\"(.*)\">(.*):</a>(.*)<IMG SRC=\"(.*)\"(.*)</tr>|Ui",
$remote_site,$matches);
for ($i=0; $i<count($matches[3]); $i++) {
$name = $matches[3];
$image = $matches[5];
if (strstr($image,'grnball.gif')) {
// green ball
}
else {
// red ball
}
// do your thingy
}
functions docs:
file(),
join(),
preg_match_all(),
strstr()
Good Luck,