Answers for "how to store current date in mysql using php"

PHP
0

php date from mysql and date

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

php get current datetime mysql format

date('Y-m-d H:i:s');
Posted by: Guest on April-22-2020

Code answers related to "how to store current date in mysql using php"

Browse Popular Code Answers by Language