WARNING: newbish question!!!
Hey. How can I tell the user if hes using Netscape Navigator or not? I know how do it for IE but not NN
IE:
<?php
if (strstr($_SERVER["HTTP_USER_AGENT"], "MSIE")) {
echo "You are using Internet Explorer";
} else {
echo "You are not using Internet Explorer";
}
?>
Whats the NN7 version of MSIE lol. ive tried alot of names. none of em worked. Help apppreciated!