File "session.php"
Full Path: /home/analogde/www/Massage_online2018/session.php
File size: 235 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
print_r($_SESSION);
var_dump($_SESSION);
echo '<pre>' . print_r($_SESSION, TRUE) . '</pre>';
foreach ($_SESSION as $key=>$val)
echo $key." ".$val."<br/>";
echo "<pre>";
print_r($_SESSION);
?>