honkmaster Posted September 30, 2012 Share Posted September 30, 2012 Hi, Any help would be great I have the following code which is looking at two dates, due date and today. <?php[/font][/color][color=#232323][font='Helvetica Neue'] date_default_timezone_set('Europe/London');[/font][/color][color=#232323][font='Helvetica Neue'] $now = time();[/font][/color][color=#232323][font='Helvetica Neue'] if ($row_rsReleaseQue['duedate'] < date('d-m-Y',$now)) { echo '<tr class="tableBody3">'; } else { echo '<tr class="tableBody1">'; } ?> I want to change the background colour of the line in my table based on the due date. < less that todays date = Red (tableBody3) == equal to today = Orange (tableBody2) > greater than today = Green (tableBody1) Cheers Chris Quote Link to comment https://forums.phpfreaks.com/topic/268929-compare-dates/ Share on other sites More sharing options...
Zane Posted September 30, 2012 Share Posted September 30, 2012 (edited) Assuming this script is working already, all you need is an else if if ($row_rsReleaseQue['duedate'] < date('d-m-Y',$now)) { echo '<tr class="tableBody3">'; } else if($row_rsReleaseQue['duedate'] == date('d-m-Y',$now)) { echo '<tr....'; } else { echo '<tr class="tableBody1">'; } Edited September 30, 2012 by Zane Quote Link to comment https://forums.phpfreaks.com/topic/268929-compare-dates/#findComment-1381866 Share on other sites More sharing options...
honkmaster Posted September 30, 2012 Author Share Posted September 30, 2012 Thanks for help, I get a syntax error on all echo lines? Cheers Chris Quote Link to comment https://forums.phpfreaks.com/topic/268929-compare-dates/#findComment-1381871 Share on other sites More sharing options...
Barand Posted September 30, 2012 Share Posted September 30, 2012 Erm, "d-m-Y" format is useless for > or < date comparisons. Needs to be Y-m-d Quote Link to comment https://forums.phpfreaks.com/topic/268929-compare-dates/#findComment-1381876 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.