Jump to content

Text color depending on date


mrjonnytou

Recommended Posts

Hi,

 

I have a php page which returns tasks from a database table along with the person assigned and their deadline. What I would like to do is change the color of the text from black to red as the deadline approaches to remind the user it needs finishing.

 

Any suggestions of ways to achieve this are appreciated.

 

Thanks in advance,

Link to comment
Share on other sites

Convert the deadline to a unix timestamp and then compare with the current timestamp. Without any of your code, its a little difficult to give you any more than this:

 

<?php
$deadline = strtotime($deadline);
$now = time();
if($now - $deadline < 60*60*24*5){//if less than 5 days away
    //colour red
}
?>

 

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.