Hi, (thank you in advance!) Please help me with my php browser check code, part of which reads:
if($b < 3) {
return false; }
if(!ereg("(IE|Netscape)",$HTTP_USER_AGENT)) { return false; }
Basically means that if any browser less than version 3 and/or ANY use of Netscape will return a, "false." (...and any version of IE greater than 3 will return a, "true.")
I'd like to add or change something so that I get a "return true" for Netscape 4 or greater on a MACINTOSH (but not a PC)! Is this possible? Thank you again!!!
-Erin