Hi,
I have tried every combo I can think of to get a hidden form variable to pass
the timestamp into the MySQL table. I know I am getting the timestamp in php
because I print the value to the page during testing. But it uploads into the
MySQL database as 00/00/0000. Here is an example of the timestamp: 1088892113
In DW Server behavior I've tried associating the number with an interger and
date. In MySQL I've used timestamp, date, int.
Don't really care if it shows up in the database as the number or an actual
date and time combo. If I can even get the # into MySQL I should be able to
manipulate it back onto a page as just the date and/or time.
Code section for hidden field in form. I took the ?s out of the php code
below:
<php $time_now = time(); >
<label>
<input type="hidden" name="UserRegDate" id="UserRegDate" value="<= $time_now
Thanks. Leesa