Session
Session not working in IIS or WAMP using PHP, MySQL, Webassist and Dreamweaver on localhost . All pages were developer months ago and are working on GoDaddy server. All five websites are no-longer recording the data from Store Result. Evenwrote a test page. Get this message "
Notice: Undefined variable: ok in C:\wampserver64\www\lccc\A_SESSION TEST.php on line 12
session FAILED". Been trying to selove for a month. Can anyone help. [personal info removed by moderator]
<?php
session_start();
?>
<!doctype html>
<html >
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<?php
echo $ok ? 'session OK' : 'session FAILED';
?>
</body>
</html>
