Jump to content

Order by date DESC doesn't work.


V

Recommended Posts

I have a query that counts the number of items that belong to a category and echoes the date of the most recent item in that category. All works fine except for the date. For some reason it isn't querying the most recent. The code is..

 

DB Connection
.....
query all categories {
.....
$sql = "SELECT *, COUNT(post_id) as total_posts FROM posts WHERE cat_id = {$row["cat_id"]} ORDER BY post_date DESC";				
$posts_result = $connection->query($sql) or die(mysqli_error($connection));

while ($row = $posts_result->fetch_assoc()) {	

                        $total_posts = $row['total_posts'];
		$post_date = $row['post_date'];


                       echo $total_posts;
                       echo $post_date;

        }//end posts loop
}//end category loop

 

I'm not sure what I'm doing wrong. I have ORDER BY post_date DESC which I think should retrieve the most recent date.. :-\ Any ideas?

Link to comment
https://forums.phpfreaks.com/topic/207968-order-by-date-desc-doesnt-work/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.