I have a HTML form with checkboxes/multiple choise. How do I insert the information from more than one of these checkboxes into my mySQL-database? Only the last choise is being inserted... Thanx
Checkbox data is held as an array in PHP, so you need to get each value out of the array if you want to used it.
<code> reset($checkbox);
do { $value = current($checkbox); // do something with the value } while (next($checkbox)); </code>