I have several forms to make [no usernames/passwords or any established tables with users yet, so no Inserts into multiple tables are possible ] & I want to stick with a single page form.
Since I have many different values for the user to select from, for each of these forms, I'm considering doing multiple Inserts into columns.
When this is done, such as by checkbox, and multiple checkboxes are selected at once, assuming the Insert places all combined values in the same column -- a) will the Insert add spaces between the values and b) is it okay to have numbers with decimals and c) is it really necessary to have csv. (although I realize the downside of later working with "combined" col values)
<input type=checkbox name="form.col" value="189"> Sample Insert>
<input type=checkbox name="form.col" value="190"> Next Sample Insert>
If no spaces are added I could see where this could get confusing if some ending characters are the same as other starting ones.
I assume there is no problem for Inserting strings of text combined in the same column;
<input type=checkbox name="form.col" value="Watching the stars"> Watching the stars <br>
<input type=checkbox name="form.col" value="Moving the Planets"> Moving the Planets<br>
With of these all adding to the same column, right? Its a single part form & all Insert needs to go in the same single table which I'm trying to keep it to.