How can I use php to load one external stylesheet for internet explorer 6 and bellow, and another stylesheet for everything else?
I would rather use the $_SERVER['HTTP_USER_AGENT'] method then the javascript method. Can anyone tell me how to do this? Thanks!
Thank you matthewrobertbell! I have included the code that you sent me bellow for anyones else who wants to do this. Joel if (preg_match('/firefox/i',$_SERVER['HTTP_USER_AGENT']) { //print code for firefox css } Code (markup):