hmm. got it. I think it seems that unfortunately, if you want to pass the array, you should pass the values by passing each element.
<?
//I want to pass the $array
$array_str="";
foreach($array as $element)
{
$array_str.="array[]=$element&";
}
$array_str=substr($array_str,0,-1);
header("Location:d.php?$array_str");
?>
I am sorry, ý can't think about anyother solution.
Good luck