Código PHP:
<?php
// conexion
?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$colname_mensajes = "-1";
if (isset($_COOKIE['usuario'])) {
$colname_mensajes = $_COOKIE['usuario'];
}
mysql_select_db($database_general, $general);
$query_mensajes = sprintf("SELECT * FROM mensajes WHERE para = %s ORDER BY id DESC", GetSQLValueString($colname_mensajes, "text"));
$mensajes = mysql_query($query_mensajes, $general) or die(mysql_error());
$row_mensajes = mysql_fetch_assoc($mensajes);
$totalRows_mensajes = mysql_num_rows($mensajes);
?>
<?php
$mensajes = mysql_query("SELECT * FROM mensajes WHERE para = '$_COOKIE[usuario]'");
$mensajesnuevos = mysql_query("SELECT * FROM mensajes WHERE para = '$_COOKIE[usuario]' && leido = 'no'");
$filasmensajes = mysql_num_rows($mensajes);
$filasmensajesnuevos = mysql_num_rows($mensajesnuevos);
?>
<!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>Documento sin título</title>
<style type="text/css">
.centro {
text-align: center;
}
</style>
</head>
<body class="centro">
<p><a href="/index.php?cont=amigos-md.php">Bandeja de Entrada</a> - <a href="/index.php?cont=amigos-md-enviar.php">Enviar un mensaje</a></p>
<p>Tienes <? echo"$filasmensajes"; ?> mensajes en tu bandeja de entrada.</p>
<p>Tienes <? echo"$filasmensajesnuevos"; ?> mensajes sin leer.</p>
<p> </p>
<table border="0" align="center" cellspacing="1">
<tr>
<td bgcolor="#666666"> </td>
<td bgcolor="#666666">#</td>
<td bgcolor="#666666">Fecha</td>
<td bgcolor="#666666">Enviado por</td>
<td bgcolor="#666666">Asunto</td>
</tr>
<?php do { ?>
<tr>
<td bgcolor="#666666"><?php echo $row_mensajes['leido']; ?></td>
<td bgcolor="#666666"><?php echo $row_mensajes['id']; ?></td>
<td bgcolor="#666666"><?php echo $row_mensajes['fecha']; ?></td>
<td bgcolor="#666666"><?php echo $row_mensajes['de']; ?></td>
<td bgcolor="#666666"><p><?php echo $row_mensajes['asunto']; ?></p></td>
</tr>
<?php } while ($row_mensajes = mysql_fetch_assoc($mensajes)); ?>
</table>
<p>-Ayuda-</p>
<p>-Para leer un mensaje, haz clic sobre su Asunto.</p>
<p>-Los mensajes se ordenan por fecha de envío.</p>
<p>-Cuando aún no hayas leído un mensaje, la primera columna del correo aparecerá blanca.</p>
<p>-Cuando llegues a 100 mensajes, automaticamente se te borrarán todos los mensajes. Por eso, procura ir borrando los mensajes que no desees guardar, haciendo clic en la cruz que aparecera a la derecha del mensaje.</p>
<p>-Si quieres guardar más de 100 mensajes, puedes pedir una solicitud de aumento.</p>
</body>
</html>
<?php
mysql_free_result($mensajes);
?>
y cuando entro a la bandeja de entrada, aparece, pero DOBLE. Osea, aparecen DOS mensajes iguales..
Porque??
Gracias!
PD.: Agregé otro mensaje a la BD , y ahora me sale:
El primer mensaje: BIEN
El segundo mensaje: DOBLE.
Cita:
Pero ahora el problema es que el orden no aparece DESCENDIENDO sino ASCENDIENDO...Lo solucioné cambiando el DO WHILE por un simple WHILE
:s