No me saca los registros de la base de datos nose por que es
Código PHP:
<?php
# Incluimos la configuracion
include('config.php');
session_start();
if (!isset($_SESSION['logueado_usuario'])) {
header("location: http://redsocial.net.net");
exit();
}
# Obtenemos el mensaje privado
$id = $_GET['id'];
$registros=mysql_query("select * from privados where para='$nombre' ORDER BY id desc ", $conexion)or
die("Problemas en el select:".mysql_error());
$row = mysql_fetch_assoc($registros);
?>
<strong>De:</strong> <?=$row['de']?><br />
<strong>Fecha:</strong> <?=$row['fecha']?><br />
<strong>Asunto:</strong> <?=$row['asunto']?><br /><br />
<strong>Mensaje:</strong><br />
<?=$row['mensaje']?>
<?php
# Avisamos que ya lo leimos
if($row['leido'] != "1")
{
mysql_query("UPDATE privados SET leido='1' where id='$id'") or die(mysql_error());
}
?>
eesta es la base:
CREATE TABLE `privados` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`para` varchar(65) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL,
`de` varchar(65) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL,
`fecha` datetime NOT NULL,
`mensaje` longtext NOT NULL,
`leido` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;