$handle = fopen("http://opium2.msg.dcn.yahoo.com/online?u=<Y!id>&m=a","rb");
$contents = '';
while (!feof($handle)) {
$contents .= fread($handle, 100);
}
fclose($handle);
if (strpos($contents,"OFFLINE") == false)
{
echo '<img src="path/to/image/online" />';
}else{
echo '<img src="path/to/image/offline" />';
}