ok i have a birthday form that will save as time using mktime, so when it is saved in mysql, it will show something like 634608000.. how can i convert it to mm/dd/yyyy format so that when it is displayed in html it will be readable..?

link|improve this question

62% accept rate
google knows this one – Greg Flynn Jun 10 '11 at 2:25
feedback

1 Answer

up vote 1 down vote accepted

All you need is this:

 date('m/d/Y',$time)
link|improve this answer
does this return hh:mm:ss also? – kester martinez Jun 10 '11 at 2:23
No, but if you look at the options for date function, you can add that on as well. – datasage Jun 10 '11 at 2:24
1  
@kester martinez relevant link – Jimmy Sawczuk Jun 10 '11 at 2:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.