I am trying to post an array in a hidden field and want to retrieve that array after submitting a form in PHP.
$postvalue = array(\"a\", \"b\", \"c\");
Let it be in a repeated mode it will post this element in the form as an array and use the
print_r($_POST['item'])
To retrieve the item