15/11/2013, 13:56
|
| | Fecha de Ingreso: noviembre-2013
Mensajes: 13
Antigüedad: 11 años, 2 meses Puntos: 0 | |
Respuesta: redireccion fallida, variable sesion? tiro todo el codigo, este form es el resultado de un form que al seleccionar me tira todo lo que muestro con este codigo, use variable de sesion para usar un dato del primer form al 3ero
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Sistema clases pràcticas</title>
<link href="" rel="stylesheet" type="text/css" />
<script language="JavaScript">
function Borra(idcliente)
{
var agree=confirm("¿Realmente desea eliminar el cliente seleccionado?");
if (agree) { document.location="eliminar.php?id="+idcliente; }
else return false ;
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<?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> </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();?>
</form>
<p>
<p> </p>
<a href="javascript:history.back()">texto</a>
<p align="center"><a href="clientes.php" onClick="return confirm('¿Realmente deseas eliminar este articulo?')">Volver</a></p>
<p align="center"><a href="registro.php">Registrar nuevos clientes</a></p>
<p align="center"><a href="perfil.php" >Perfil</a></p>
</form>
</body>
</html> |