Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/07/2005, 17:50
darkmasterr
 
Fecha de Ingreso: diciembre-2004
Mensajes: 163
Antigüedad: 19 años, 4 meses
Puntos: 2
o en php con un switch:

Código PHP:
switch($css){
case 
algo:
include(
"algo.css");
break;
case 
otro_algo:
include(
"otro_algo.css");
break;
... 
etc
etc
etc