Janel Sangalan
Janel Sangalan

Reputation: 41

Displaying Real Time Date

i'm trying to display today real date on inputbox but the problem is when user date settings is incorrect the data that will display in inputbox will be incorrect Is it possible to display the real exact date to inputbox

here is my commmand

date_default_timezone_set('Asia/Manila');
 echo "<span style='color:red;font-weight:bold;'>Date: </span>". date('F j, Y g:i:a  ');

Upvotes: 1

Views: 60

Answers (1)

User1010
User1010

Reputation: 819

Unfortunately if the date/time on the machine running PHP is incorrect you will get incorrect results, I suggest connecting this PC to a time server to obtain the correct date/time using NTP,

Windows: https://learn.microsoft.com/en-us/windows-server/networking/windows-time-service/windows-time-service-tools-and-settings

Linux: https://www.cyberciti.biz/faq/howto-set-date-time-from-linux-command-prompt/

Upvotes: 1

Related Questions