Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/02/2010, 13:21
Avatar de bioxido
bioxido
 
Fecha de Ingreso: diciembre-2008
Ubicación: $_SERVER['PHP_SELF']
Mensajes: 601
Antigüedad: 15 años, 4 meses
Puntos: 21
Respuesta: switch múltiples

Esto?

Código PHP:
switch($seccion) {

     case 
"agregar":
     include(
"agregar.php");
     break;

    case 
"editar/$extra":
    include(
"editar.php?id=$extra");
    break;

    case 
"perfil":
    include(
"perfil.php");
    break;

    default:
    include(
"menu.php");
    break;