current datetime function in mysql code example
Example 1: mysql current date
SELECT NOW();
It returns current date and time.
Example 2: php get current datetime mysql format
date('Y-m-d H:i:s');
SELECT NOW();
It returns current date and time.
date('Y-m-d H:i:s');