I'am new to PHP but I work with ColdFusion for a couple of years. So this question might have a simple answer but I drives me almost crazy.
Php Code:
<?
session_start();
echo "<h1>".session_save_path() ."</h1>";
session_register("blue");
?>
Browser shows:
c:/tmp
PHP has encountered an Access Violation at 01289872
System: Windows NT SP 6a, IIS 4 and PHP 4.3.1
I gave all the permissions to access the temp folder, but I get allways the silly error. The code works fine untill I add the line session_register("blue").
Thanks for helping.
telly