Reputation: 41
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
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,
Linux: https://www.cyberciti.biz/faq/howto-set-date-time-from-linux-command-prompt/
Upvotes: 1