Ver Mensaje Individual
  #10 (permalink)  
Antiguo 05/11/2010, 20:18
hicetnunc86
 
Fecha de Ingreso: octubre-2010
Mensajes: 9
Antigüedad: 13 años, 6 meses
Puntos: 0
Respuesta: redireccionar presionando radiobutton

<?php
$opc = $_REQUEST['opc'];
$opc2 = $_REQUEST['opc2'];
$opc3 = $_REQUEST['opc3'];
$empre= "empr";
$natur= "natu";
$funci= "func";
if ($opc==$empre)
{
Header("location: Formulario_Empresa.html");
}
if ($opc==$natur)
{
Header("location: Formulario_Usuario.html");
}
if ($opc==$funci)
{
Header("location: Formulario_Funcionarios.html");
}
?>



Última edición por hicetnunc86; 05/11/2010 a las 20:42