hey, thanks a lot, i got it to work - and for those of you interested, you should use the following to have a value in your hidden field:
$information = urlencode(serialize($array));
and to retrieve the value, use:
$vars = unserialize(urldecode($_POST['information']));