while trying to store variables using
session_start();
session_register('variable');
header('Location:nextpage.php'); <<<<no variable available in nextpage
but using this link instead
echo "<p><a href=\"nextpage.php\">link</a></p>"; <<<<yes variable available in nextpage
and pick up the variable of the session in nextpage like
session_start();
$buffer1 = $_SESSION['sessput'];
echo "username: " . $buffer1['user']."<br>";
is there no way to use the header-function?!
thanks to everyone who`s helping,
deep d