Ver Mensaje Individual
  #7 (permalink)  
Antiguo 01/04/2008, 18:24
Avatar de _eNGeLs_
_eNGeLs_
 
Fecha de Ingreso: noviembre-2007
Ubicación: CDE, Paraguay
Mensajes: 278
Antigüedad: 17 años
Puntos: 4
Re: Envio de formulario

podes hacer mediante una redireccion al script correspondiente dependiendo del valor de la variable de los selects..

"SCRIPT PHP"
Código PHP:
$seleccion $_POST[selects];

if(
$seleccion == "opcion1"){
header("Location: opcion1.php?dato1=$_POST[dato1]&dato2=$_POST[dato2]");
}

if(
$seleccion == "opcion2"){
header("Location: opcion2.php?dato1=$_POST[dato1]&dato2=$_POST[dato2]");
}
if(
$seleccion == "opcion3"){
header("Location: opcion3.php?dato1=$_POST[dato1]&dato2=$_POST[dato2]");

salu2