if the title seems too vague. I wanted to show every variable that I used to create the page along with the names and values โโof the variables, is it possible and how?
foreach($_SESSION as $varname => $value) { print "<b>".$varname."</b> = $value <br/>"; }
^ the above example is what I use to display all session variables, what if I need to display the variables that I set to display the page? Are they registered in any form of array or should I also track them separately?
debugging php
lock
source share