I read many tutotutorials to understand how inserting multiple lines in one query since I have to deal with multiple choices question in a PHP form (v5.4). Unfortunately
Unfortunately, I still have errors in my query.
Could
Could you please help me?
To
To be more precise about the purpose, I made a form and I created a DBDatabase in MySQL with
:
- one table (A) to store all single values from radio button and text questions with a SERIAL id.
one table (A) to store all single values from radio button and text questions with a SERIAL id.
- a table for each multiple choices question, in which I listed all possible answers in one column, and an ID code in another col.
a table for each multiple choices question, in which I listed all possible answers in one column, and an ID code in another col.
- and an "intermediate" table for each multiple choices question, to store the same id than the one created automatically during insertion in table A and the ID from the values selected in the checkbox question
(so, for one form filled, I expect to get one row in table A, and as much rows as the selected values in each corresponding "intermediate" table.and an "intermediate" table for each multiple choices question, to store the same id than the one created automatically during insertion in table A and the ID from the values selected in the checkbox question
(so, for one form filled, I expect to get one row in table A, and as much rows as the selected values in each corresponding "intermediate" table.