I'm trying a sample on php using:
<?php
$_SESSION["color"] = "blue";
echo $_SESSION["color"] . ".<br>";
?>
When I refresh the page, blue
is printed but there are no cookies associated with the page I loaded, checking using "Developer Tools". How does the server track my session ID if there are no cookies?