$orientacion:
Código PHP:
<?php
session_start();
$_SESSION['ContadorAI'];
$_SESSION['zona'];
?>
<?php
session_start();
$orientacion = $_POST['strOrientacion'];
$_SESSION['strOrientacion'] = $orientacion;
switch ($orientacion) {
/*____________________________________________CLIMA A________________________________________*/
case "Montanosa":
echo "<SCRIPT>window.location='apunta_al_formulario.php';</SCRIPT>";
break;
case "Norte":
echo "<SCRIPT>window.location='apunta_al_formulario.php';</SCRIPT>";
break;
case "Otra":
echo "<SCRIPT>window.location='apunta_al_formulario.php';</SCRIPT>";
break;
}
?>