No, it is already looping through all the pairs. See where I said "// do your thingy"?
Try it.. just make a new file, and through this in there....
PHP Code:
<?
$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];
echo "|" . $name . "|" . $image . "|";
if (strstr($image,'grnball.gif')) {
echo "the image is a green ball" . "|";
}
else {
echo "the image is a red ball" . "|";
}
echo "<br>\n";
}
?>