Thursday, April 5, 2012

Need checkbox array in my .ctp page

Hello,

 I need to add checkbox array in my .ctp page

I need something like this:

Array
(
[AreasHazard] => Array
(
[area_id] => 22
[hazard_id] => 15
[Control] => Array
(
[0] => 13
)
)
)

here is "Control" is my checkbox, now, i need to put checkbox array so that i got values as define above.

my current code is 

<?php echo $this->Form->checkbox("Control", array("value"=>$click, "id"=>"checkClick", "class"=>"multiSelect")); ?>

I have try with

<?php echo $this->Form->checkbox("Control[]", array("value"=>$click, "id"=>"checkClick", "class"=>"multiSelect")); ?>

but i am not success.

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
 
 
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

No comments: