Hi! Still somewhat new to PHP, this should be a simple question $post_time is 2009-07-28 23:18:59 How do I convert the datetime of $post_time into the word July? Thanks in advance.
$post_time = "2009-07-28 23:18:59"; $timestamp = strtotime($post_time); echo date('F', $timestamp); PHP: