<?php session_start(); $r = array('one', 'two', 'tree'); $_SESSION['arr'] = $r; ?>
<?php session_start(); print_r($_SESSION['arr']); ?>