Hi there
CraigR ~ just found the archive section and it's this one.
<?php
if (!isset($_SESSION)) {
session_start();
}
echo '<pre>';
print_r( $_SESSION );
echo '</pre>';
?>
It simply prints out which sessions are being held in the browser (makes it really easy to follow the lineage through to checkout because you know when the cart has been cleared and which IDs are being held, which helps to update favourite selections or change orders from pending to paid fro in the user's order history table). You obviously remove this code when it goes live.
many thanks
vanrooj