|
Posted by J.O. Aho on 01/10/07 15:12
Brian wrote:
> "J.O. Aho" <user@example.net> wrote in message
> news:50k970F1fsiqtU1@mid.individual.net...
>> Brian wrote:
>>> Hi
>>>
>>> I'm sure I have done this before but I can't find the code.
>>> I have form with 10 checkboxes on it, the name of
>>> the checkboxes are the same but the values are
>>> different.
>>>
>>> Im sure these would be submitted as an array, but
>>> how do I get the value out of each one?
>>> I think its something like
>>>
>>> foreach($checkbox) {
>>> $output .= $checkbox
>>> }
>>>
>>> But it's not working, what am I missing here?
>> Did you remember to do
>>
>> $checkbox=$_REQUEST['checkbox'];
>>
>
> I hadn't, but have now tried this and still get an error,
> I know it's something really simple I'm missing here
>
> $information = $_REQUEST['information'];
> foreach($information){
> $output .= "$information<br>";
> }
In the input tags you use the name="information[]" ?
--
//Aho
Navigation:
[Reply to this message]
|