Jump to content

Date/Time dependant actions


Omzy

Recommended Posts

I have a datetime field in my database, I retrieve this in my script follows:

 

 
$date=$row['date'];
$status=$row['status'];
echo $date; //outputs 2010-01-04 12:20:33
echo $status; //outputs 002

 

I now want to add an IF statement in my script that checks $date as follows:

 

If today's date is 2 DAYS AFTER $date then set $status to 001. The check must also take in to account the time.

Link to comment
Share on other sites

You should be able to do it with the strtotime function.

 

if(time() >=  strtottime($row['date']. " +2 days")) {
   echo "More than 2 days";
}

If you only need items from the database where the day is more than 2 days ago though you would be better off using MySQL's date functions in the WHERE clause.

Link to comment
Share on other sites

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.