El tema esta en que tengo una consulta que me devuelve 3 registros pero solo me imprime 2 y no entiendo porque, jamas me habia sucedido esto
Código:
$consulta = "SELECT * from ejemplares where raza != 'galgo italiano'";
$resultado = mysql_query($consulta);
while ($damefila=mysql_fetch_array($resultado))
{
?>
<table cellpadding="0" cellspacing="0" ><tbody>
<tr valign="top">
<td rowspan="2"><a href="javascript:llamarasincrono('ejemplares.php?num_ejem=<?php echo $damefila['num_ejem'] ?>', 'content3')" ><img style="margin-right:10px; border:3px double #5281ca" width="150" src="imagenes/ejemplares/<?php echo $damefila['foto'] ?>" /></a></td>
<td class="tit1" ><a href="javascript:llamarasincrono('ejemplares.php?num_ejem=<?php echo $damefila['num_ejem'] ?>', 'content3')" > <img src="imagenes/icon_p.png" /> <?php echo strtoupper($damefila['nomb']) ?></a></td>
</tr>
<tr>
<td valign="top">
<?php echo $txt_sexo?>: <?php echo $damefila['sexo'] ?><br/>
<?php echo $txt_nacido?>: <?php echo $damefila['nacimiento'] ?><br/>
<?php echo $txt_padre?>: <?php echo $damefila['padre'] ?><br/>
<?php echo $txt_madre?>: <?php echo $damefila['madre'] ?>
</td>
</tr>
</tbody></table>
<br/><br />
<?php
} //fin while
mysql_free_result($resultado);
Muchas gracias