I have a bunch of checkboxes on one page, that look like this
<input type="checkbox" value="classic" name=subgenre[]></input>
And when all the data is collected and inserted into a databse, it looks like this
$subgenre=$_POST[subgenre];
This is supposed to collect every box that is checked and store it in a database in a basic list, however I can not get it to work, and arrays are not my strongpoint. Any help is appreciated.