hi,
But that's it.
If $my_array is an array, $_SESSION['myarray'] will be an array as well.
On the next page, you use:
$_SESSION['myarray']
// or
$my_array = $_SESSION['myarray'];
for example:
print_r ($_SESSION['myarray']);
// or
$my_array = $_SESSION['myarray'];
print_r ($my_array );
Don't forget [man]session_start()[/man] at the top of the page.
Here's an example:
<?php
session_start ();
$my_array = array ("this", "that");
$_SESSION['myarray'] = $my_array;
print_r ($_SESSION['myarray']);
?>