What is the correct format to pass to the date()
function in PHP if I want to insert the result into a MySQL datetime
type column?
I’ve been trying date('Y-M-D G:i:s')
but that just inserts “0000-00-00 00:00:00” everytime.
What is the correct format to pass to the date()
function in PHP if I want to insert the result into a MySQL datetime
type column?
I’ve been trying date('Y-M-D G:i:s')
but that just inserts “0000-00-00 00:00:00” everytime.