This is the function I enjoy the most:
echo date("d-M-y",strtotime($datelastupdated));
This returns a date string as the example:
27-Aug-03
Change the format string (first arg) to whatever format that you prefer. Look up the function date().
Good luck!
Phil.