Posts by igorsgm • 1 point
1 post
-
0
votes3
answers591
viewsA: Find joomla session variables for php
To dump the current Joomla Session just do the following code: $session = JFactory::getSession(); var_dump($session); And from this object, you can acquire the information you want.…