Is there a function in php wherein you can convert the number 12 to its equivalent in a month. For example if the mysql database stores digits and not words for dates. how do you convert the number 12 into the word december?
feedback
|
|
You could do like:
| |||||||||||
feedback
|
|
Try this and look at the date function for more answers:
| |||
|
feedback
|
It's like date() except it will take care of localization for you, if you set a locale using setlocale beforehand. | |||
|
feedback
|
|
You could also do that directly in MySQL with
See http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_str-to-date | |||||
feedback
|
|
Use this code:
Where $month is your number from 1 to 12. Read more at php functions reference: date | |||
|
feedback
|