I'm trying to implement a very simple form of session. this is my code:
<?
session_start();
session_register("info");
$info = "abc";
echo "$info"
?>
<a href = "2.php"> next </a>
simple and fast, for testing purpose. BUT, when I test it, a magic error keeps hammering:
"Warning: open(/tmp\sess_c5627161fbe5806325d7f005046faa27, O_RDWR) failed: m (2) in c:\phpdev\www\test\1.php on line 3"
what’s the problem ??? … I'm losting my nerve …
thanx
marian