lo que pasa esque traigo los dato por url le doy buscar y si lo hace pero le doy a otro boton y me dice
Notice: Undefined index: cedula in \.....\vista\AcudienteV.php on line 6
No se que hacer
anexo codigo
modelo
Código PHP:
vistaVer original
function Buscar($valor) { $sql = "select cedula,nombre,apellido,telefono from acudiente where cedula='".$valor."'"; $var=$row[0]; $var1=$row[1]; $var2=$row[2]; $var3=$row[3]; } echo "<script> location.href=\"../vista/AcudienteV.php? cedula=$var&nombre=$var1&apellido=$var2&telefono=$var3\"; </script>"; }
Código PHP:
Ver original
<?php require "../control/AcudienteC.php"; $modelo = new Modelo(); $var=$_GET['cedula']; $var1=$_GET['nombre']; $var2=$_GET['apellido']; $var3=$_GET['telefono']; ?> <HTML> <head> <script language="JavaScript" type="text/javascript" src="../vista/ajax.js"> </script> <title> Acudientes </title> </head> <form name = "formula" id = "formula" method = "POST" action = "../control/AcudienteC.php"> <font> <b>Acudiente</b> <br> <br/> <table> <tr> <td> Cedula </td> <td> <input id="cedula" type = "text" name = "Cedula" value="<?php echo $var?>"/> </td> </tr> <tr> <td> Nombre </td> <td> <input id = "Nombre" type = "text" name = "Nombre" value="<?php echo $var1?>"/> </td> </tr> <tr> <td> Apellido </td> <td> <input id = "Apellido" type = "text" name = "Apellido" value="<?php echo $var2?>"/> </td> </tr> <tr> <td> Telefono</td> <td> <input id = "Telefono" type = "text" name = "Telefono" value="<?php echo $var3?>"/> </td> </tr> <tr> <td>Buscar por Cedula</td> <td> <input id="Valor" type="text" name="Valor"/> <td> <input type = "submit" value = "Buscar" name = "Buscar"/> </td> </table> <table> <tr> <td> <input type = "submit" value = "Insertar" name = "Insertar"/> </td> <td> <input type = "submit" value = "Borrar" name = "Borrar"/> </td> <td> <input type = "submit" value = "Modificar" name = "Modificar"/> </td> <td> <input type = "submit" value = "Listar" name = "Listar"/> </td> </tr> </table> <table> <br> <tr> <td align = "center"><h3>cedula</h3></td> <td align = "center"><h3>nombre</h3></td> <td align = "center"><h3>apellido</h3></td> <td align = "center"><h3>telefono</h3></td> </tr> <?php $modelo->listarAcudientesM(); ?> </table> <font> </form> </HTML>
ayuda por fa!!