You really shouldn't double post.
To do what you want, you'll want the date and time in the database. When you create, your table, you'll have to make a timestamp field
$query = mysql_query("CREATE TABLE $table (
id int(11) DEFAULT '0' NOT NULL auto_increment,
field1 varchar(6) NOT NULL default '',
field2 varchar(20) NOT NULL default '',
field3 varchar(35) NOT NULL default '',
inputedon timestamp NOT NULL,
PRIMARY KEY (id)
)");
like that for example.
Then, to timestamp the database at the time you input your info. . .
$query = mysql_query("INSERT INTO yourtable (field1, field2, field3, inputedon) VALUES ('$field1', '$field2', '$field3', now()
)");
Change that example to fit your needs. now() inputs the timestamp into the database.
Good luck.