Need help with simple code.

A

Anonymous

Guest
Hi Bjawnie,
something like this (if I understood it :) )

Code:
<?php 
if($HTTP_GET_VARS['mode'] = "print"){
	echo "<LINK href='../css/print.css' type=text/css rel=stylesheet>";
}else{
	echo "<LINK href='../css/style.css' type=text/css rel=stylesheet>"; 
}
;?>
 
Back
Top