Hi,
I have the following hunk of code.
<?
$displaystatusnew = "$row[p_mod_date_time]";
if(($displaystatusnew) == '') {
$displaystatusvarnew = "";
}
if(($displaystatusnew) == '2003-10-28 18:11:00') {
$displaystatusvarnew = "
<table border=0 cellspacing=1 width=100%>
<tr>
<td width=100% bgcolor=#FFFF00>
<p align=center><font size=2><b>NEW</b></font></td>
</tr>
</table>
";
}
echo $displaystatusvarnew;
?>
Instead of 2003-10-28 18:11:00 I would like to be able to look for all dates from today through 10 days from now.
How can I do that?