Hello everyone!
I'm trying to use session variables and cookies on my "localhost".
The first file is ett.php, with the following code.
<?php
session_start();
header("Cache-control: private");
$_SESSION["out"] = "tjenare";
?>
<html>
<head>
<title></title>
</head>
<body>
<a href="tva.php">GO</a>
</body>
</html>
The receiving file is tva.php, with the following code.
<?php
session_start();
header("Cache-control: private");
?>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<?php
$out = $_SESSION["out"];
echo "Out = $out";
?>
</body>
</html>
I dont get this to work!
Should I change any installations in PHP:INI or??????????????



