Commit | Line | Data |
---|---|---|
e7749a76 | 1 | <?php |
2d11b576 | 2 | session_start(); |
e7749a76 DH |
3 | if ($_SESSION['debugging']) { |
4 | $_SESSION['debugging']=false; | |
5 | echo "debugging turned off; refresh to turn it on"; | |
6 | } else { | |
7 | $_SESSION['debugging']=true; | |
8 | echo "debugging turned on; refresh to turn it off"; | |
9 | } | |
10 | ?> |