Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8941305
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:16:11+00:00 2026-06-15T11:16:11+00:00

Possible Duplicate: Listing diary events grouped by days in PHP/MySQL I’ve got a database

  • 0

Possible Duplicate:
Listing diary events grouped by days in PHP/MySQL

I’ve got a database which holds live band gigs for my town, each gig is stored as a record in my MySQL database.

I’d like to group by day to see the gigs on my website. But the GROUP BY function will only show 1 record. How can I show all gigs under one date?

My MySQL structure..

ID  date                    content
1   2012-12-02 00:00:00     Gig 1
2   2012-12-02 00:00:00     Gig 2
1   2012-12-03 00:00:00     Gig 1
2   2012-12-03 00:00:00     Gig 2

I’d like to show like this..

-- Sun 02 December 2012 --
Gig 1
Gig 2

-- Mon 03 December 2012 --
Gig 1
Gig 2
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T11:16:12+00:00Added an answer on June 15, 2026 at 11:16 am

    Don’t group the results in the database layer, do it in your presentation layer. For example, using PDO:

    $dbh = new PDO("mysql:dbname=$dbname", $username, $password);
    
    $qry = $dbh->query('
      SELECT   UNIX_TIMESTAMP(date), content
      FROM     gigs
      WHERE    date > NOW()
      ORDER BY date
    ');
    
    if ($qry->execute()) {
    
      // output headers
      echo '<h1>Upcoming gigs</h1>';
    
      $row = $qry->fetch();
      while ($row) {
        $current_date = $row['date'];
    
        // output $current_date initialisation
        echo '<h2>', date('D d F Y', $current_date), '</h2><ul>';
    
        do {
          // output $row details
          echo '<li>', htmlentities($row['content']), '</li>';
        } while ($row = $qry->fetch() and $row['date'] == $current_date);
    
        // output $current_date termination
        echo '</ul>';
      }
    
      // output footers
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How to successfully rewrite old mysql-php code with deprecated mysql_* functions? I
Possible Duplicate: Nested json to php search listing i am trying to parse some
Possible Duplicate: How do I make a request using HTTP basic authentication with PHP
Possible Duplicate: How can I understand nested ?: operators in PHP? Why does this:
Possible Duplicate: How do you get a directory listing in C? Listing directory contents
Possible Duplicate: What is the best way to store international addresses in a database?
Possible Duplicate: foreach and simplexml I have got my XML document loading correct but
Possible Duplicate: What is the fastest XML parser in PHP? I still need to
Possible Duplicate: Difference Between Equals and == in which cases equals() works exactly like
Possible Duplicate: Transparent images with C# WinForms I am coding an app which will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.