session_start() ;
$_SESSION['visits']++;
print 'You have visited here '.$_SESSION['visits'].' times.';
why the visit variable is not incremented the next time i enter.
Notice: Undefined index: visits in C:\Program Files\Apache
Group\Apache2\h tdocs\session\c ookie2.php on line 3
You have visited here 1 times.
$_SESSION['visits']++;
print 'You have visited here '.$_SESSION['visits'].' times.';
why the visit variable is not incremented the next time i enter.
Notice: Undefined index: visits in C:\Program Files\Apache
Group\Apache2\h tdocs\session\c ookie2.php on line 3
You have visited here 1 times.
Comment