try this:
PHP Code:
<?
echo "Yes, I'm running<BR>\n";
$remote_site = join('', file("http://remote.domain.com/index.php") );
preg_match_all(
"|<tr>(.*)<a name=\"(.*)\">(.*):</a>(.*)<IMG SRC=\"(.*)\"(.*)</tr>|Ui",
$remote_site, $matches);
echo "begining loop<BR>\n";
for ($i=0; $i<count($matches[3]); $i++) {
$name = $matches[3][$i];
$image = $matches[5][$i];
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";
}
?>