Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/10/2008, 13:36
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: un formlario me mande a cierta url con su variable

Pues solo rescata la variable $_POST['select'] haces un switch y rediriges con header, por ejemplo:
Código php:
Ver original
  1. switch($_POST['select']) {
  2. case '1ocotlan':
  3.        header("Location: http://portal_ocotlan/");
  4.        break;
  5. }

Saludos.