Hi,

you could try

Code:
session_start();
if(!isset($_SESSION['books'])) $_SESSION['books'] = array();
$_SESSION['books'][] = $your_new_value;
Didn't you look for some permanent way to store the data the other day?

Musicman