Ron,
I am going to try to clarify the time() function, so please bear with me.
The TIME() function is a PHP funciton so if you are to use it in HTML then you will need to enclose it with the <?php ?> tags. These tags tell the PHP processor (I use the term processor loosely) to examine and execute the code between them.
So if you want to use the TIME() in HTML you can do it like:
<input type="hidden" name="date" value="<?php echo time() ?>">
you can find out more at http://www.php.net/time
UNIX TIMESTAMPS: Unix and Linux use time as the number of seconds since the Unix Epoch (Which I beleive is like Dec 17 1969). Because it uses seconds most Timestamps are an integer on the order of 1,XXX,XXX,XXX Another number good to know is there are 86,400 seconds in a day. Because the Unix TImestamp is an integer it makes it easy to add or subtract amounts of time from a stored time. NOTE: There is not a date_add or date_subtract funciton in PHP. Also because the Unix Timestamp stores seconds it not only stored the Seconds, Min, Hour, but also the Month, Day Year. Another function you may want to look at is date(), http://www.php.net/date this function will take a Unix Timestamp and put it in a format you define.
Back to your form...
One thing you may want to consider about using a hidden form element is that it is going to store the time the form was loaded, not the time the form was submited. If you use this function in your insert or update statement for the database then you will more acuratly (Probably with in a few thousanths to hundreths of a second) get the time the user actually submitted the form.
On to the "." operator.
PHP uses the "." between strings to concatinate the two strings together. Meaning if I have
String1: How are you today
String2: Im doing fine
In PHP I can do: "How are you today" . "Im doing fine";
or if String1 and String2 are variables: $String1 . $String2;
I use this operator a lot to dynamicly build my SQL statements, and peice together parts of an HTML page
I hope this will give you a little better understanding of what I was thinking before.
Let me know if you have any other questions...
PHPdev