Binding form fields to server action

I have created a form manually rather than using Bootstrap and added the appropriate server connections. When I submit the form a new record is added to the database but it is blank.

How do I bind the form fields to the server action so the data is added to the database.

Thanks
Greg

Normally it is best to create the server action first. This will create the $_POST values that will be used when you generate the form using App Connect.

However, to answer your question, make sure that the $_POST values match the value of Name in your form input, as per

Also make sure that the Database Insert step Properties has the same value as in

Thanks Ben.
All good now.

Greg