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
Share on other sites

Thanks for the suggestion. I tried SELECT * FROM `posts` ORDER BY post_date ASC

 

and it lists the newest on top correctly like this

 

2010-07-17 13:28:12

 

2010-07-17 12:48:36

 

2010-07-17 12:48:03

 

:shrug:

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.