Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/11/2013, 09:12
maxinformatico
 
Fecha de Ingreso: noviembre-2013
Mensajes: 13
Antigüedad: 11 años, 2 meses
Puntos: 0
redireccion fallida, variable sesion?

tengo el siguiente codigo, necesito tomar un valor de otra pagina, $curso=$_SESSION['curso']; ocupo de sesion para no perderla, el problema es q si estoy en el formulario q muestro abajo, y apreto volver al formulario principal no encuentra la pagina, dice confirmar reenvío del formulario, que podra ser? matar la variable? use sesion destroy y no funciono

Código PHP:
<?php
    session_start
();    
    include(
"funciones.php");
    
conectar();
?>

<?php
$auto
=$_POST['auto'];
$curso=$_SESSION['curso'];

$query=mysql_query("SELECT a.id,h.horario, a.alumno, a.horario, a.auto FROM horario h LEFT OUTER JOIN alumnos a ON h.horario = a.horario
 and a.auto='$auto'and a.curso='$curso'"
); 
?>
  </p>
  <p>&nbsp; </p>
   <table width="500" border="1" id="tab">
     <tr>
       <td colspan="5" height="25">Horarios disponibles</td>
     </tr>
     <?php

while($con=mysql_fetch_array($query)){
echo 
'<tr>';
echo 
'<td width="80">'.$con['id'].'</td>';
echo 
'<td width="80">'.$con[1].'</td>';
echo 
'<td width="80">'.$con[2].'</td>';
echo 
'<td width="80">'.$con[3].'</td>';

echo 
'<td><a href="eliminar.php?id='.$con['id'].'">Eliminar</a></td>';

echo 
'<td>'.'<a href="#">'.'Modificar'.'</a>'.'</td>';
echo 
'<td>'.'<a href="creaAlumno.php" target="_blank">'.'Agregar'.'</a>'.'</td>';
echo 
'</tr>';
}


?>
   </table>
  <?php desconectar();?>