I currently have a simple textarea and submit button whose contents are saved to a row in an sql database. I need help trying to create a row to store the date the textarea contents were updated, then echo the date. Seems simple enough... could someone help me out? Thanks
You'll have to add a date field to your database (if it doesn't exist yet), and modify your INSERT query. Something like: INSERT INTO tablename VALUES ('$text', CURDATE()) Code (markup):