I want to change color of my td as per the date received from the sql query. Please help with following –
I want to change the color of td to green if the fetched date is less than today’s date.
JavaScript
x
<?php
if($mydate > date('d-M-Y'))
{
echo "<td style="background-color:green;">";
}
else
{
echo "<td>";
}
?>
Advertisement
Answer
JavaScript
$mydate = "2015-10-01";
if(strtotime($mydate) > strtotime(date('Y-m-d')))
{
echo "<td style='background-color:green;'>testing</td>";
}
else
{
echo "<td>testing</td>";
}