
February 1st, 2004, 06:01 PM
|
|
I AM A GOLDEN GOD
|
|
Join Date: Apr 2003
Location: Camarillo, California
|
|
Try making an alias to the formatted date string like so:
Code:
select
date_format(timestamp,'%e/%c/%Y %I:%i:%s %p') AS timestamp
from
board_comments
What happens in that case, if you don't use an alias, is the returning column name is actually
'date_format(timestamp,'%e/%c/%Y %I:%i:%s %p')' rather than a human relatable name. I've never used Dreamweaver in that capacity so I can't vouch for it to be your solution, but it's the first place I'd try.
|