session_start();
//registering session
$_SESSION['sesname'] = array();
$_SESSION['sesname']['name'] = "planetsim";
$_SESSION['sesname']['location'] = "Aus";
//etc you can keep going on.
this 1 work for session but how can i get the value of name and location from the session if im on the next page?
sorry abt the question im just new with session and i havent really tried it.. just wanna know how it works