I have the below formhelper code where $spot is an array of variables:
echo $form->create('Spot', array('controller' => 'spots', 'action' => 'view'));
echo $form->hidden('spotdata', array('value' => $spot));
echo $form->end('View');
When I print_r($this->data) in my controller, the spotdata is empty. Can the formhelper accept values that are arrays? Is there any way to do this? Please let me know, thanks!