I can’t seem to work out how to insert multiple checkbox values into a mysql database with php.
As you know, check boxes are for selecting multiple options in the same group. I have a form with three checkboxes, but when I submit the form, only the bottom-most checked box value is inserted into the database.
How do I get them all the checked options in there?
where I’ve checked the “homepage” checkbox and “investor” checkbox. Then the data that appears in the mysql table is “Array”, not “homepage” or “investor”.
So using my actionscript knowledge, I included a for loop in the sql query on the php page, so the page goes:
By the look of it, my application of the for loop is incorrect (as my printed data tells me) and it creates bad syntax in the sql query.
I just want to add a string of values to the entry_type column in the mysql table. Eg. “homepage investor” or “investor” or “homepage investor customer”.