Thanks for your prompt replies guys, all is well now, and I decided to post the code just in case another newbie like myself finds it useful
<td><?php echo $row_rsIndepth['Subject']; ?>
<?php
//Workout the date in order to display new.gif if article is less than 7 days old
$subdate = $row_rsIndepth['SubDate'];
$tstamp = strtotime($subdate);
$sevenDaysAgo = mktime(0,0,0,date("m"), date("d")-7, date("Y"));
if($sevenDaysAgo < $tstamp)
{?>
<img src="/Images/new_1.gif" align="absmiddle">
<? } ?> </td>