So if I have a table field called date_changed in my db, and I have a form that takes losts of user input and inserts it into the table like this:
"INSERT INTO TiMH (e_year,e_month,e_day,e_type,event_detail,e_source,comments,contributor,ht_link,flag4error) ".
"VALUES ('$e_year','$e_month','$e_day','$e_type','$event_detail','$e_source','$comments','$contributor','$ht_link','$flag4error')";
How do I get the TIMESTAMP inserted without mismatching the fields? (Since I have no form field for the TimeStamp.)
Code example is always great for comaprison.