Answers for "echo with dates in php sql"

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
0

print date in php

// Change the line below to your timezone!
date_default_timezone_set('Australia/Melbourne');
$date = date('m/d/Y h:i:s a', time());
Posted by: Guest on September-25-2021

Browse Popular Code Answers by Language