here is what i ended up using
PHP Code:
<?
$searchengines=array("Google", "Fast", "Slurp", "W3C_Validator");
$is_search_engine=0;
foreach($searchengines as $key => $val) {
if(strstr("$HTTP_USER_AGENT", $val)) {
$is_search_engine++;
}
}
if($is_search_engine==0) {
session_start();
}
?>
i just resubmitted the site, so hopefully it will work out
