Tengo una consulta gracias a la cual puedo obtener los temas más comentados sobre un artículo:
Código PHP:
<?
$_MAS_POST = "";
CONSULTA A LA BASE DE DATOS
$sql = mysql_query("select id, count(id) total from comentarios group by id order by total desc limit 5");
while($row=mysql_fetch_array($sql,MYSQL_ASSOC)){
$_MAS_POST .= '<b>'.$row["id"].'</b>'. $rs["total"].'<br>';
}
echo $_MAS_POST;
?>
Lo estoy intentando con esto
Código PHP:
WHERE fecha LIKE '%". date("m", strtotime("-1 month")) ."%'
Código PHP:
$sql = mysql_query("select fecha, id, count(id) total from comentarios group by id WHERE fecha LIKE '%". date("m", strtotime("-1 month")) ."%' order by total desc limit 5");