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 6650007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:50:31+00:00 2026-05-26T00:50:31+00:00

I want to compare two dates in PHP. One date is the date due,

  • 0

I want to compare two dates in PHP.
One date is the date due, which is provided by the user, stored in a database and retrieved with PHP.
The second is today’s date.

    $unixdue = strtotime($query['date_due']); //Converts the database integer to Unix date
    $duestamp = date("dmY", $unixdue); //Converts the Unix date to dd-mm-yyyy


//If the due date is larger than today (i.e., after today), it's early.
        if ($query['complete'] == 0 AND date("dmY") < $duestamp) {echo "Early";}
//If the due date is smaller than today (i.e., before today), it's late.
        elseif ($query['complete'] == 0 AND date("dmY") > $duestamp) {echo "Late";}
//If the due date IS today, it's today.
        elseif ($query['complete'] == 0 AND date("dmY") == $duestamp) {echo "Today";}

It works with dates that are today, but all the others return “Early” even if they are not early.
Due to this I can’t even tell if the rest is working at all.

I have tried comparing two Unix dates, but they include the time as well, when really I only want the date. If I compare two unix dates, I can’t say if something is “Today”.

  • 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-05-26T00:50:32+00:00Added an answer on May 26, 2026 at 12:50 am

    You can’t compare whether two strings are less than or greater than each other. Or you can, but in this case you shouldn’t because the results are not what you want (“03092011” < “29082011” for example).

    You can first compare if the dates are equal as you have done; if they are not, you can compare the timestamps. Even though you use only dates it doesn’t matter because the timestamp of an earlier date is always smaller than the timestamp of a later date, regardless of the time part.

    if( $query['complete'] == 0 ) {
        if( date("dmY") == $duestamp ) { echo "Today"; }
        elseif( time() < $unixdue ) { echo "Early"; }
        elseif( time() > $unixdue ) { echo "Late"; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want compare two dates one would be the current date and other date
Good afternoon in my timezone. I want to compare two dates , one of
I want to compare two arrays, one coming from a shoppingcart and the other
I have two arrays of System.Data.DataRow objects which I want to compare. The rows
I want to make a notification system. Shortly.. to compare two dates, the only
I want to compare two NSDates with NOW ([NSDate date]). NSDate *date1 = [NSDate
I want to compare between two dates. From both the dates, I am fetching
How do I compare two dates in Lingo? To be specific, I want to
How would I compare two dates to see which is later, using Python? For
I want to compare two dates with time, I want all the results from

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.