estoy tratando de hacer un listado de una consulta que finalmente sera en base a un valor dado (defino un criterio de busqueda para obtener la consulta).
Pero al analizar el codigo me esta dando un codigo de error y no logro identificar cual es, ojala y me puedan echar una manita.
El código es el siguiente:
Código PHP:
<?php
include ("conexion.php");
$rst_productos=mysql_query("SELECT * FROM lider ORDER BY nombres",$conexion);
$num_registros=mysql_num_rows(rst_productos);
if ($num_registros=0);
{
echo "no se ha encontrado nada que mostrar";
mysql_close($conexion);
exit();
?>
<!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=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style1 {font-weight: bold}
.style2 {font-weight: bold}
-->
</style>
</head>
<body>
<form action="consultaprueba.php" method="post" name="form1" id="form1">
<div align="center"><strong> LISTADO DE PRODUCTOS </strong>
</div>
</form>
<table width="800" border="1" cellspacing="2" cellpadding="5">
<tr>
<td style=with: 52px class="style2"><strong>Clave Sede</strong></td>
<td style=with: 222px class="style2"><div align="center">Clave Lider</div></td>
<td style=with: 188px class="style2"><div class="style1" aling="center">
<div align="center"><strong>Nombre Lider</strong></div>
</div> </td>
<td style=with: 92px class="style2"><div align="center"><strong>Modificar</strong></div></td>
<td class="style2"><div align="center"><strong>Eliminar</strong></div></td>
</tr>
<?php
while ($fila=mysql_fetch_array($rst_productos))
{
?>
<tr>
<td style=with: 52px class="style2"><?php echo $fila[0];?></td>
<td style=with: 222px class="style2"><?php echo $fila["clavelider"];?>;</td>
<td style=with: 188px class="style2"><div aling="center"></div> </td>
<td style=with: 92px class="style2"> </td>
<td class="style2"> </td>
</tr>
<?php
}
?>
</table>
<p> </p>
</body>
</html>
Gracias