Answers for "date format to database php"

PHP
8

php mysql date format

date("Y-m-d H:i:s")
Posted by: Guest on July-05-2019
0

php mysql datetime format string

$phpdate = strtotime( $mysqldate );
$mysqldate = date( 'Y-m-d H:i:s', $phpdate );
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language