Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Want to change date format in the admin panel from US (YYYY-MM-DD) to UK (DD-MM-YYYY). Which file is the setting in?
Wellandg
Where to change date format
Re: Where to change date format
There's no setting for it, you will need to change code to in file admin/new_link.php
Note that this will only affect new links you add. For existing ones, you will need to edit the dates in ccount_database.php file. It is really easy to mess up the database file, so back it up before making changes!
Code: Select all
date('Y-m-d')
Code: Select all
date('d-m-Y')
Note that this will only affect new links you add. For existing ones, you will need to edit the dates in ccount_database.php file. It is really easy to mess up the database file, so back it up before making changes!
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Where to change date format
Thanks for the help