Hello
I am having problems gettin my sessions to work, and have tried the basic scropt below to tray and resolve it. Is the code below incorrect?
<?php
session_start();
if(isset($SESSION['views']))
$SESSION['views'] = $SESSION['views']+ 1;
else
$SESSION['views'] = 1;
echo "views = ". $_SESSION['views'];
?>
<a href="view.php">test</a>
Any advice would be fully appreciated
Ian