Powered by Blogger.

Send multi-dimensional array using form post PHP


Send multi-dimensional array using form post PHP

Send array using form:
<input type="hidden" name="multiarray" value="<?php echo base64_encode(serialize($multiarray)); ?>" />

Get array:
$multiarray= unserialize(base64_decode($this->input->post('multiarray')));

No comments