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

  • SEARCH
  • Home
  • 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 8499457
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T00:40:21+00:00 2026-06-11T00:40:21+00:00

I have the dates stored in a mySQL table from 2010 – 2040 in

  • 0

I have the dates stored in a mySQL table from 2010 – 2040 in the following format:

2012-01-02

I SELECT each date from the table and display them in a while – mysql_fetch_assoc loop

while($row=mysql_fetch_array($result)){

    echo $row["date"];

}

how can I check that a new month has started? I suspect I need to place the current month counter in a var using explode()… but how can a comparison be made since the var will be overwritten in the while loop

if(old month != new month){
    do something..
}

thanks

  • 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-11T00:40:22+00:00Added an answer on June 11, 2026 at 12:40 am
    $old_month = '';
    
    while($row=mysql_fetch_array($result)){
      list($year, $month, $day) = explode('-', $row["date"]);
      if($old_month != $month) {
        $old_month = $month;
        echo 'new month';
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Mysql table that stores dates in the format (YYYY-MM-DD HH:MM:SS). What
Possible Duplicate: Format mysql datetime with php Well.. I have stored date(c) in Mysql
I have birth date data stored in Mysql table as below: id firstname middlename
I have following data in a mysql table, +------------+--------+--------+ | date | inQty |
I've have a date field in my table that stores dates from a form
I have a list of dates stored in a MYSQL table, the idea is
I have a list of dates stored in MySQL using PHP. These were stored
I have tried several mySQL queries to compare a column of dates stored as
I have dates stored in MongoDB using Date(), MongoDB uses UTC it's date type,
So I have this function that takes all the users from an MySql table

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.