Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/08/2005, 13:04
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 5 meses
Puntos: 11
En index.php

Código PHP:
<?php
   
switch ($_GET['seccion'])
  {
      case 
"manuales"
         
header("Location: manuales.php");
         exit();
      case 
"otro":
         
header("Location: otro.php");
         exit();
  }
?>