Jump to content

Checking date from DB


coupe-r

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.

Archived

This topic is now archived and is closed to further replies.

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