now in php code example
Example 1: php get current datetime mysql format
date('Y-m-d H:i:s');
Example 2: time function in php
Return the current time as a Unix timestamp, then format it to a date:
<?php
/* Unix Timestamp */
$timestamp = time();
echo $timestamp . "<br>";
echo date("d/m/Y", $timestamp);
?>