Hmm, thanks guys, but its still not working...
here's some code:
$tmp_url="$REQUEST_URI";
if (preg_match("/?/",$tmp_url)) echo "meta name=\"robots\" content=\"noindex,nofollow\">\n"; else echo "meta name=\"robots\" content=\"index,follow\">\n";
OR
$tmp_url="$REQUEST_URI";
if (ereg("?",$tmp_url)) echo "meta name=\"robots\" content=\"noindex,nofollow\">\n"; else echo "meta name=\"robots\" content=\"index,follow\">\n";
Both don't work.... I think its the damn '?' mark that's having an issue with PHP.
Thanks for you help so far...