Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/06/2009, 08:15
Avatar de metacortex
metacortex
Viejo demente
 
Fecha de Ingreso: junio-2004
Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 19 años, 11 meses
Puntos: 832
Respuesta: todo en el index

Código php:
Ver original
  1. <?php
  2. $enlace = $_GET['mostrar'];
  3.  
  4. switch ($id) {
  5.  
  6.   case fulano:
  7.   header("Location: http://www.fulano.com");
  8.   break;
  9.  
  10.   case zutano:
  11.   header("Location: http://www.zutano.com");
  12.   break;
  13.  
  14.   case pepe:
  15.   header("Location: http://www.pepe.com");
  16.   break;
  17.  
  18.   default:
  19.   header("Location: http://www.mi-sitio.com");
  20.   break;
  21. }
  22. ?>

Código html:
Ver original
  1. <a href="index.php?mostrar=fulano">Página de Fulano</a>
  2. <a href="index.php?mostrar=zutano">Página de Zutano</a>
  3. <a href="index.php?mostrar=pepe">Página de Pepe</a>