I basically want the word NEW to show up when the date is between today and less then 5 days old. I started doing my code like this, but obviously I'm missing much, but I'm drawing a blank, any help please?
$today_date = date('Y-m-d');
if($row['date'] >= $today_date)
{
echo" <font color=red size=1>New!</font>";
}