Jump to content

Recommended Posts

I have a DATETIME column in my DB which stores the date as YYYY/MM/DD.  I want to check to make sure that todays date is not greater than the value in the DB.  This is basically checking their subscription expiration date.

 

Will this work?

 

if($row['sub_exp'] <= date("Y/m/d"))

{

//expiration expired kick them out

}

Link to comment
https://forums.phpfreaks.com/topic/198812-checking-date-from-db/
Share on other sites

If the formats on both sides of the comparison are identical (and with two digit month and day values) you can compare dates that way (as long as format has the year is first, followed by the month, then the day.) However, a mysql DATETIME is not that exact format, so what you posted would not work.

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.