I have an odd problem with PHP Sessions (using php 5.6) both in localhost and own webhost.
I create a new session, I echo it and it gets displayed. However when I head to Resources -> Cookies -> localhost/mydomain.com I only see PHPSESSID, and not the session I created.
<?php
session_start();
$_SESSION['test'] = "test";
echo $_SESSION['test'];
?>
Picture right after I run the code above:
What is wrong with what I do? Or is it a PHP or Chrome related issue?
Thank you.
