My website is using CSS for layout and there should be one CSS-file for new browsers and another for old ones (such as NS 4).
What would be the best way to get the right CSS-file for each browser with PHP?
do a conditional like this:
$Browser= //code to detect browser version
if ($Browser< 4) { //use code to link to first sheet }else{ //code for second CSS file }
-j