Evitar los Notice en php
Hola como estas experto quiero preguntarle como puedo evitar los incómodos Notice en Php pues al momento de ejecutar una tabla de consulta a una base de datos empleo el siguiente código y pese a que la tabla se ve como la he programado me sale los siguientes mensajes :
Notice: Undefined variable: row in D:\xampp\htdocs\ConsultaBoletin.php on line 47
\n
Notice: Undefined variable: row in D:\xampp\htdocs\ConsultaBoletin.php on line 49
\n
Notice: Undefined variable: row in D:\xampp\htdocs\ConsultaBoletin.php on line 51
\n
Notice: Undefined variable: row in D:\xampp\htdocs\ConsultaBoletin.php on line 53
el codigo que tengo es:
<!--?php <br ?-->
//$idregistro=$_POST['idnumreg'];
$con = mysql_connect("localhost","root","califele2011");
//mysql_select_db("test_db", $con);
mysql_select_db("omnilife", $con);
$query_consulta = "SELECT * FROM afiliacion";
$consulta = mysql_query($query_consulta, $con) or die(mysql_error());
?>
<form action="#" method="post">
print "\n \n \n \n \n \n";while($fila = mysql_fetch_array($consulta)){do {echo "\\n";echo "\\n";echo "\\n";echo "\\n";echo "\\n";//echo "\\n";} while ($row = mysql_fetch_array($consulta)); }?></form><form action="#" method="post">Gracias por tu ayuda</form><form action="#" method="post">
<table border="\"1\"">
<tbody>
<tr><th>Id_Afiliacion</th><th>Nombre</th><th>Email</th><th>País_Ciudad</th><!--?php <br ?-->
<td>".$row["Idafiliacion"]."</td>
<td>".$row["Nombre_A"]."</td>
<td>".$row["Email_A"]."</td>
<td>".$row["Pais_Ciudad_A"]."</td>
</tr>
</tbody>
</table>
</form>
Notice: Undefined variable: row in D:\xampp\htdocs\ConsultaBoletin.php on line 47
\n
Notice: Undefined variable: row in D:\xampp\htdocs\ConsultaBoletin.php on line 49
\n
Notice: Undefined variable: row in D:\xampp\htdocs\ConsultaBoletin.php on line 51
\n
Notice: Undefined variable: row in D:\xampp\htdocs\ConsultaBoletin.php on line 53
el codigo que tengo es:
<!--?php <br ?-->
//$idregistro=$_POST['idnumreg'];
$con = mysql_connect("localhost","root","califele2011");
//mysql_select_db("test_db", $con);
mysql_select_db("omnilife", $con);
$query_consulta = "SELECT * FROM afiliacion";
$consulta = mysql_query($query_consulta, $con) or die(mysql_error());
?>
<form action="#" method="post">
print "\n \n \n \n \n \n";while($fila = mysql_fetch_array($consulta)){do {echo "\\n";echo "\\n";echo "\\n";echo "\\n";echo "\\n";//echo "\\n";} while ($row = mysql_fetch_array($consulta)); }?></form><form action="#" method="post">Gracias por tu ayuda</form><form action="#" method="post">
<table border="\"1\"">
<tbody>
<tr><th>Id_Afiliacion</th><th>Nombre</th><th>Email</th><th>País_Ciudad</th><!--?php <br ?-->
<td>".$row["Idafiliacion"]."</td>
<td>".$row["Nombre_A"]."</td>
<td>".$row["Email_A"]."</td>
<td>".$row["Pais_Ciudad_A"]."</td>
</tr>
</tbody>
</table>
</form>
1 respuesta
Respuesta de Jorge Vila
1