<? $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"; } ?>