COOKIES that i get back from the server it's as if my browser does not save this PHPSESID cookie
This is my index.php :
<?php
session_start();
require_once 'bootstrap.php';
if(session_id()==''){
$_SESSION["var"] = 12;
}
else echo $_SESSION['var'];
it does not return anything, how can this be ?