Concludendo, per spedire un array in post è necessario ciclare sull'array in PAGINA1:
Codice PHP:
foreach ($arr as $key => $value) {
  echo 
"<input type='hidden' name='arr[$key]' value='$value' />";

e in PAGINA2 il PHP ricostruirà "arr" come vettore e lo resituirà in $_POST['arr'] (ed è l'unica cosa che fa il PHP in automatico).
Confermo! mi è venuto. in PAGINA2 mi è bastato $arr = $_POST['arr'];

Grazie! Gentilissimo!