there are session tutorials all over the shop, webmonkey's is fairly decent
the important thing to remember is to call
start_session();
BEFORE any kind of html on the page, and it has to be on every page to make the session stay alive across those pages
use
session_register("paper_storage");
to make $paper_storage available as a session variable, then set
$paper_storage=$paper;
bingo, echo $paper_storage on any page and you will get that variable.
oh and use session_destroy(); to kill all session variables if you want to make it time out or stop somewhere