Possible Duplicate:
Where are $_SESSION variables stored?
I'm using this to store some data across page requests (state of two fields from a search form):
session_start();
$_SESSION = $_POST;
I was wondering where are sessions stored? And when do they get deleted?