if I start the session with session_start() the variable $_SESSION exists. but any added values to the array are lost on the next page.
this code, from the php manual doesn't work:
<?
session_start();
if (!isset($SESSION['counter'])) {
$SESSION['counter'] = 0;
}
else {
$_SESSION['counter']++;
}
?>
the first part of the if-clause is never TRUE.
Thanx for your answer anyway.
Marcel