Answers for "how to print session variable in php"

PHP
0

echo session

print_r($_SESSION);
Posted by: Guest on September-14-2020
4

php session variables

<?php
   session_start();
   $_SESSION['var'];
?>
Posted by: Guest on March-18-2020

Code answers related to "how to print session variable in php"

Browse Popular Code Answers by Language