How is it possible to use an array, say $a in page2 whereas you declared it in page1 ?

Example:
--------

Page 1 -> "main.php"
action="result.php"
$a(2)=array("aa","bb");


Page2 -> "result.php"
I need to use array $a declared in the main page. Is it possible ? Please show me.