Without having to call each session variable by name, is there a way to display the content of all the session variables currently set?
Echo the session object as json. I like json because I have a browser extension that nicely formats json.
session_start(); echo json_encode($_SESSION);