Tema: ayuda
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/09/2002, 06:48
Avatar de Cain
Cain
 
Fecha de Ingreso: enero-2002
Ubicación: Catalunya
Mensajes: 6.459
Antigüedad: 22 años, 3 meses
Puntos: 17
Re: ayuda

Esto normalmente se hace con switch();

index.php:
Código:
switch ($fuseaction) {
case "list";
include('qry_list.php');
include('dsp_list.php');
break;
case "ficha";
include('qry_ficha.php');
include('dsp_ficha.php');
break;
...
default:
include('qry_list.php');
include('dsp_list.php');
break;
}
<div style="font:small Verdana;">Proximamente...</div>
<div align="center" style="font:bold small Verdana;"><a style="text-decoration:none;" href="http://www.traduim.com" target="_blank">Traduim</a>: El portal de los traductores</div>