Hi again,
Well, I am embarrassed to say that it was a stupid mistake on my part --- inexperience I guess ;-)
I had mixed up two syntaxes.
To start with I was using an array as in: while($row = mysql_fetch_assoc($result))
Than I was outputting the results to the page with :
<li /><font size="-1"><a href="faq_full.php?id=<?=$row['id'] ?>"><b><?=$row['slug'] ?></b></a></font>
which is fine. Then for the date, I was using object oriented syntax (duh!!1) like so:
<br>
<font size="-2"><? echo formatDate($row->timestamp); ?></font>
So when I finally noticed that, I swithed it to:
<br>
<font size="-2"><?=formatDate($row['timestamp']); ?></font>
and voila ... a properly formatted date.
Man talk about blind. Oh well, it is working now and I am happy. Thanks for everyone's replies.
Cheers,
filch