es el error que aparece cuando mando llamar esta otra parte.
Código PHP:
<html>
<head>
<title>Prueba</title>
</head>
<body>
<?php
include("conn.php");
$result=mysql_query("SELECT * FROM 'post' ORDER BY 'id' DESC");
while ($myrow = mysql_fetch_array($result,MYSQL_ASSOC))
{
printf("<table><tr>
<td>%s</td>
</tr>
<tr>
<td>%s<br>
<a href='comm.php?id=%s'>%s comentarios</a><br>
Fecha:%s Hora:%s</td>
</tr>
</table><br>", stripslashes($myrow['title']), stripslashes(nl2br($myrow['entry'])), $myrow['id'], $myrow['comm'], $myrow['date'], $myrow['time']);
}
?>
</body>
</html>
Help.
El codigo deberia mostrar sin ningun problema esto:
%s (titulo)
%s (texto)
%s comentarios
Fecha:%s Hora:%s