siamon123 / warehouse-inventory-system

Open source inventory management system with php and mysql
http://www.oswapp.com
MIT License
379 stars 233 forks source link

how change the timezone of the system? #39

Closed jamcardinality closed 5 years ago

SShowecker commented 5 years ago

In header.php locate the following lines:

<div class="header-date pull-left">
 <strong><?php echo date("F j, Y, g:i a");?></strong>
</div>

Change them to:

<div class="header-date pull-left">
 <strong><?php
  date_default_timezone_set("America/New_York");
  echo date("F j, Y, g:i a");
  ?></strong>
</div>

Change the timezone from America/New York to whatever you want based on the supported timezones in this URL: http://www.php.net/manual/en/timezones.php

jamcardinality commented 5 years ago

It's working! Thank youuu SShowecker! 👍