Quote:
Originally Posted by Publisher Bucks
Interesting, I didnt even think of that, does that work the same for anything form related, such as time, etc?
|
Time isn't form related! You can always get the current time on the server with time() which returns a UNIX timestamp, you can convert that into a readable date/time string with date(). If you put it in a hidden input field in the form it will give you the time you served the page to the client, not the time the user submitted it. If you get it when processing the POSTed form it will be the time on the server when the form was received back from the client.