Hi,
How can I use PHP to add entries to a MySQL table, based on feedback from a form? Thanks
Printable View
Hi,
How can I use PHP to add entries to a MySQL table, based on feedback from a form? Thanks
you start with connecting to your database and then you use this.
$sql_insert = "insert into yourtable (form_field_name) values ('$form_field_name_value')