I am trying to fully understand sessions, and I conducted this test:
my code is:
test.php
<?
@session_start();
if(isset($_SESSION['test'])) {
echo "test success";
}
?>
When I enter my cookie manually into my browser using an addon as:
PHPSESSID test
It does not recognise it.