You'll want to look into sessions, mandar, if you're wanting to store the information from multiple page views. You'll basically take that numberid = array(); and make it a session variable array instead:
session_start();
$numberid = $_SESSION['number_id'];
...
Then every page you need to reference them on, you'd do something similar to this:
session_start(); // this should be at the top of the page
$numberid = $_SESSION['number_id'];
...
echo $numberid[4]; // fourth user they've selected, or whatever
Read up on sessions at the PHP manual