Vorrei cambiare il css al ricaricarsi della pagina , ho il seguente codice:
codice:
 
<?php
$val=$_GET["azione"];
if(!empty($val))
{
	if($val="ins")
	{
		
		$stile="emptystyle2.css";		
	}	
	if($val="clone")
	{
		
		$stile="emptystyle3.css";		
		
	}	
	
}
else 
	$stile="emptystyle2.css";		
	

?>

<html>

<head>
<style type="text/css">
@import url("<?php echo ($stile);?>")
</style>

ma non funziona , come si fa?
grazie.