Aqui les dejo mi archivos de mpllegados.php Lo que sucede esque me aparecen miles de veces el primer registro, despues marca un error de php que el script a excedido el maximo de tiempo de ejecucion
<?
session_start();
include("conectar.php");
?>
<? include("acceder.php"); ?>
<style type="text/css">
<!--
.Estilo1 {
color: #000000;
font-weight: bold;
}
.Estilo3 {
color: #4B3CDD;
font-weight: bold;
}
-->
</style>
<?
$nick = $_SESSION['nick'];
$query = "SELECT * FROM `mensajes` WHERE destinatario='$nick'";
$row = mysql_num_rows(mysql_query($query));
?>
<p align="center" class="Estilo1">Mensajes Privados: <?=$row;?></p>
<h5 align="center" class="Estilo3">[Enviar Nuevo] </h5>
<div align="center">
<table width="218" border="1">
<tr>
<td width="20"> </td>
<th width="47" scope="row">Asunto</th>
<td width="81"><strong>Enviado Por</strong> </td>
<td width="42"><strong>Fecha</strong></td>
</tr>
<?
while($array = mysql_fetch_array(mysql_query($query))) {
?>
<tr>
<td><INPUT TYPE="checkbox" NAME="ingeniero" VALUE="SI"></input></td>
<th scope="row"><?=$array['asunto'];?></th>
<td><?=$array['remitente'];?></td>
<td><?=$array['fecha'];?></td>
</tr>
<? } ?> </table>
</div>