Hi list,
I`ve got a formular with some text fields within a php-file (1.php). Another php-file (2.php) is called
by the form to evaluate the fields. Both php-files are protected with the follwing line at the beginning:
page_open(array("sess" => "MEINE_SESSION", "auth" => "MEINE_AUTH"));
1.php is loaded and the input is made. After the lifetime of the auth-class has expired, I send the data
to 2.php by clicking the submit-button. 2.php even contains the page_open statement. After that, the login
dialog appears. That ist OK. After re-authentication, 2.php is loaded. But now 2.php is unable to get the
data of the form from 1.php. Therefore I use $HTTP_POST_VARS["Textfeld"], but there is no data.
The lifetime of the session-class is 0. That of the auth-class is 1 minute.
Does anybody hava any ideas?
Thanks, Andi.
|