Page 1 of 1

TIME STAMP ON POST

Posted: Fri Feb 27, 2015 3:25 pm
by JEFFERY
Script URL:
Version of script: 1.7.2
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:
Would it be possible to add a time stamp after the date when comments are posted?

Re: TIME STAMP ON POST

Posted: Fri Feb 27, 2015 4:35 pm
by Klemen
You need to modify the "date" function arguments.

Open gbook.php and find:

Code: Select all

date(" j, Y")
You can for example change that to:

Code: Select all

date(" j, Y h:i:s A")
That should make new posts appear as
Added: February 27, 2015 05:33:16 PM
You will find a full list of available PHP date format parameter options here:
http://php.net/manual/en/function.date.php

Re: TIME STAMP ON POST

Posted: Fri Feb 27, 2015 6:06 pm
by JEFFERY
got it thanks - works perfect