I think this is a fairly simple question...
Since the Form elements CSS doesn't work in Netscape 4, I need to run a check for that browser in my PHP page. Pseudocde is:
if (netscape4) {
don't print CSS form element stuff
} else {
do
}
I just need the "netscape4" stuff filled in =) TIA!