I have followed the instructions in this forum regarding multiple lists and still have a problem.
I have a form with the following :-
<select name="specialcells[]" multiple size="4">
<option value="1" selected>NONE</option>
<option value="2">SERDES</option>
<option value="3">HSIO</option>
<option value="4">PLL</option>
<option value="5">DLL</option>
<option value="6">ADC/DAC</option>
<option value="7">OTHER</option>
</select>
<?php
In my PHP script I have :-
foreach ($cell as $specialcells)
{
echo $cell . "<br>";
}
?>
I get the error :-
Warning: Invalid argument supplied for foreach()
What the hell is going on..