Forum Moderators: coopster
If you add square brackets to the end of the name of the <select>, then it will be passed over as an array. For instance, the following select:
<select multiple="yes" name="myinputs[]">
Would be accessible without the squarebrackets in the name, like this:
An Array => $_POST['myinputs']
First Element => $_POST['myinputs'][0]
Chad