Column in mysql database named CreateDate, need to format to mm/dd/yy H:M (AM/PM) with PHP syntax
|
|
Use the date function:
|
||
|
|
|
An easier way would be to format the date directly in the MySQL query, instead of PHP. See the MySQL manual entry for DATE_FORMAT. If you'd rather do it in PHP, then you need the date function, but you'll have to convert your database value into a timestamp first. |
||
|
|
|
|
What we need to know is how the date is stored within the SQL. Is it Timestamp or Datetime or unixtime? |
||
|
|
|
This worked the best for me:
|
||
|
|
|
|
you can also have your query return the time as a unix timestamp. That would get rid fo the need to call
then in PHP just use the
or
I like this approach as opposed to using mysql's it's annoying to have two different queries just to change the way the date looks in the UI |
||
|
|
|
|
If using php5, you can also try
|
||
|
|
|
|
Using PHP Version 4.4.9 & MySQL 5.0 This worked for me:
Pubdate being the column in mysql. |
||
|
|
