Hi.
I just wanna know how to make it possible to display a image or some html when the actual browser is netscape. The browser version isn't that important.
I think it's really simple, but I don't know how to do it.
Thank you a lot! Fox
try this:
if(stristr($HTTP_USER_AGENT, "mozilla")) { // do this code because we have a netscape browser } else { // do this cause we don't have netscape }
Hope that helps!
Chris King