I have an array on view $all_set which contain some ids.now i want to pass this array in controller using form submit.for that i used the j son encode and decode.
on my view:
<?php $all_set=json_encode($all_set); ?>
<input type="hidden" name="all_set" value="<?php echo serialize($all_set); ?>">
the above value contains(as i saw in page source):
<input type="hidden" name="all_set" value="s:26:"{"0":"1","5":"2","13":"3"}";">
Now on controller:
$result=$this->input->post('all_set');
$result= unserialize($result);
$result=json_decode($result);
print_r($result); die;
This gives me error and i am not getting any array on controller. Error:
Message: unserialize() [function.unserialize]: Error at offset 0 of 5 bytes
Why is this so? please Help.