Hola gente,
Muchas gracias por las respuestas. Claro, yo pensaba lo msimo, que necesito identificar el código de a que mensaje corresponde.
Lo puse así:
Código PHP:
<?php
require("conexion.php");
$query=mysql_query("select * from comen where cod_mensaje='$codigo' ",$connection);
$array=mysql_fetch_array($query);
echo $array['mensaje'];
?>
Pero me tira error..
http://www.quebebota.com/php/nota.php?codigo=27
Igualmente, no habría que identificar la variable '$codigo'?
Acá les dejo como está armada la tabla en la base, capaz también ayuda:
Código PHP:
CREATE TABLE IF NOT EXISTS `comen` (
`codigo` int(11) NOT NULL auto_increment,
`nombre` varchar(100) NOT NULL default '',
`fecha` datetime NOT NULL default '0000-00-00 00:00:00',
`mensaje` text NOT NULL,
PRIMARY KEY (`codigo`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
Mil gracias!
PD: Ya sé que tendria que haber hecho un do - while en vez de echo $mensaje pero solo estaba probando.