On my first page I have a form that posts a value to page2 where it gets
registered in a session. Works like a charm...
When I try to do this again, but send another value, the session doesn´t
update the new value.
Why?

PAGE 1 --->
<form action="page2.php" method="post">

<input type="text" name="value" size="30">
<input type="submit" name="submit">

</form>


PAGE 2 --->
<?
session_start();
session_register("value");
?>

Thanks,
// Tobias





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to