We have a table with the following structure in our database

create table cf_copy_2_db_demo (id SERIAL, name varchar(100), name2 varchar(50), confi_id_ref varchar(40));

And would like to copy the data from our form to this table

Our form has 2 fields, title and area, which will be copied to fields name and name2 in the database