Tienes que agregar un update para modificar el estado a 1, de esa forma ya no los mostrara como sin leer
Código PHP:
Ver original$sentencia = "UPDATE mensajeria SET estado=1 WHERE id = '" . $id . "';";
Código PHP:
Ver original<?php
include('config.php');
if(mysql_num_rows($sent)) { // Comprobamos que exista el registro con la ID ingresada $id = $row["id"];
$sentencia = "UPDATE mensajeria SET estado=1 WHERE id = '" . $id . "';";
$remitente = $row["remitente"];
$asunto = $row["asunto"];
$fecha = $row["fecha"];
$mensaje = $row["mensaje"];
?>
<strong>Remitente::</strong> <?=$remitente?><br />
<strong>asunto:</strong> <?=$asunto?><br />
<strong>fecha:</strong> <?=$fecha?><br />
<strong>mensaje:</strong><?=$mensaje?><br />
<?php
}else {
?>
<p>la noticia seleccionada no existe o ha sido eliminada.</p>
<?php
}
?>