billgod,
I would recommend using sessions.
In short:
<?php
// at top of file where you wish to READ or WRITE this data
session_start();
// .. code code
$whatIKeep = array('big.nerd' => 'geek', 'php' => 'good');
$_SESSION['keepme'] = $whatIKeep;
?>
Then on the page where you wish to get that data back:
<?php
// at top of file where you wish to READ or WRITE this data
session_start(); // ALWAYS
// .. code code
$whatIKeep = $_SESSION['keepme'];
print_r ($whatIKeep)
// output: array('big.nerd' => 'geek', 'php' => 'good');
?>
If you follow the sessions link you can look through the manual to find session best-practices as they do present their own issues.
Best of luck!