Risolto il problema.
Avevo il nome di una var sbagliata.
Comunque per conoscenza a tutti, pare buono il seguente codice esemplicativo:
file: testv1.php
codice:
$vettore = array("a","b","c");
for ( $i=0; $i<3; $i++) {
echo $vettore[$i];
}
?>
<form name="ApriTestv2" action="testv2.php" method="post">
<?
for ( $i=0; $i<3; $i++) {
?>
<input type="hidden" name="arr[]" value="<? echo $vettore[$i] ?>">
<?
}
?>
<input type="submit" name="ok" value="OK">
</form>
file: testv2.php
codice:
<?
for ( $i=0; $i<3; $i++) {
echo "-".$a[$i] = $_POST[arr][$i];
}
?>