I have an array created from the following
while (Something here)
{
echo "some pretty html
<INPUT Type=checkbox name=array[$count][name] value=...>
<input type=hidden name=array[$count][date] value=......>
<input type=hidden name=array[$count][qty] value=......>
<input type=hidden name=array[$count][price] value=......>";
$count++;
}
I need only the checked values passed (from the best of my understanding this is not possible except for the value named on the checkbox input field, and only one value can be named there)
As an alternative how would I sort the array and remove all the entries which did not have a defined value for array[][name] ??
Not as efficient but still should work?!