Posting an array from a form
Posted: Tue Nov 28, 2006 5:04 am
Hi I have an array $member_details.
Is it possible to try and Post this array across using a form?
at the moment I am using:
<input type="hidden" name="member_details" value="<?php print $member_details;?>" />
and attempting to re-access it using
$member_details = $_POST['member_details'];
however this does not work, if this is not the method to achieve this I would appriciate suggestions on the right ones.
Thanks in advance
Is it possible to try and Post this array across using a form?
at the moment I am using:
<input type="hidden" name="member_details" value="<?php print $member_details;?>" />
and attempting to re-access it using
$member_details = $_POST['member_details'];
however this does not work, if this is not the method to achieve this I would appriciate suggestions on the right ones.
Thanks in advance