Does anyone know how to insert into the database the date and the time when the user inputs this information without creating a field in the HTML form?
Thank you very much.
Moderator: General Moderators
Code: Select all
INSERT INTO table (field1, field2, field3, datetimefield) VALUES(formdata1, formdata2, formdata3, NOW())