Código PHP:
<?
$db=conectar();
$consultar="select id,titulo,contenido,autor,fecha, from post ORDER BY id DESC";
$cont_post=mysql_query($consultar)or die("error en query:".mysql_error());
while($post=mysql_fetch_assoc($cont_post)) { ?>
<table width="450" border="0" align="center">
<tr>
<td width="450"><div class="titulopost"><? echo "Titulo:".$post['titulo'];?></div></td>
</tr>
</table><?echo $post['contenido'];} mysql_close()?><br>
que es lo que tengo mal en la consulta ? Por cierto mi version MYsql es 5.0.45