Ver Mensaje Individual
  #5 (permalink)  
Antiguo 29/07/2002, 03:56
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: switch 'fucking' case

Es verdad, no usan { }
La estructura es:
Código:
switch ($fuseaction) { 
  case "list";
  include('qry_list.php');
  include('dsp_list.php');
  break; 
  case "edit";
  include('qry_edit.php');
  include('dsp_edit.php');
  break;
  ...
  default: 
  include('qry_list.php');
  include('dsp_list.php');
  break; 
}
Joe Tawers,
<a href="http://www.ilimit.com/towers">http://www.ilimit.com/towers</a>