I've looked it up on the PHP manual, and I'd like some clarification.
Is the following code correct?
if $http_user_agent == "Netscape"
{
// Do Netscape Stuff
}
else if $http_user_agent == "Internet Explorer"
{
// Do IE Stuff
}
else
{
// Do other stuff
}
Please help...
KITTfan2K