how did you set the date? was it with date() or datetime(), either way you can extract the date with:
date_format(time, '%b %e %Y')as fmt_time
where time should be what your actual date attribute is called, this will bring out the date like: Apr 20 2005
%b is the abbreviated month, %e is the date and %Y (capital Y) for 2005, use a small y for a 2 digit year
hope this helps
Chris