hello =)
i can't figure out this error msg, can someone pls help me? thanks
Warning: open(/tmp\sess_848508e73878983f1c4a0596536a7969, O_RDWR) failed: m (2) in F:\wwwroot\test.php on line 2
and the content of "test.php" is as follow:
<?
session_start();
session_register("SESSION");
if (! isset($SESSION)) {
$SESSION["count"] = 0;
echo "<li>Counter initialized, please reload this page to see it increment";
} else {
echo "<li>Waking up session $PHPSESSID";
$SESSION["count"]++;
}
echo "<li>The counter is now $SESSION[count] ";
?>
Yours sincerely,
Javier