Jennifer Gardner wrote:
> Hello,

> I am looking for a good tutorial for having the date submitted when a form
> is submitted and then being able to display the date in a results
> table/page.  Basically, when the form is submitted I want the date submitted
> into the mysql table and then I want to display that on a results page.
> Thank you in advance for your help.
>  
> Jennifer

20080623 1339 GMT-6

I dont know of a tutorial off hand but what you can do is:

<input type="hidden" name="datesubmitted" value="'.<?php echo date('g:i a l F 
j'); ?>.'" />

And then

$_POST['datesubmitted']

in your display page somewhere.

Wade

Reply via email to