hi ...
i have formated my computer ...
Windows XP SP2, IIS, PHP5, MySQL DB.
in the php.ini i make:
session.save_path = "D:/temp"
and the folder temp have NTFS permission: Everyone : allow - all
now i have in the same folder :
test.php, and test2.php
test.php includes:
<?php
session_start();
$tester="max";
if(session_register('$tester')){
echo "registered ...";
}else{
echo "not registered ...";
}
?>
and the test2.php:
<?php
session_start();
echo "tester=".$tester;
?>
but it is not showing the value of the variable, what should i do ?!
please help ...