Hmmm, how do you pass content of the array to refreshed page ?
My code looks like:
session_start();
session_register("myArray");
if(!isset($myArray)) {
$myArray = array();
}
if (isset($clicked1)){
$cellarray[] = $var_from_form;
}
I do not need to pass the content of myArray, because it is held in session.
Hope it helps !