I want to get all values of combobox not only selected value.
example:
$price = array('100','200','300');
echo $this->form->create('Price_form',array('url'=>array('controller'=>'Sale','action'=>'sale')));
echo $this->form->input('Price', array('type'=>'select','options'=>$price));
echo $this->form->end();
In SaleController:
$post_data = $this->request->data['Price_form']['Price'];
If so,I get only selected value.Now,I want to get all values such as: 100,200,300..
My Cakephp version is 2.5.7.
If know ways,help me plz...!