I have this perplexing issue of session varibles getting dropped. It is a 4
page form, the last page being a review page incase the submitter wants to
change any of the information.If you go through the form, all of the
information carries forward, and from the review page if you go back to
edit, it is there, however is you go back to page 2, then to page 1, page
one info is gone.It gets worse in that page 2 sessions drop (more likely
over written) if you go from page 3 to 2.
Each page is started with
<?php if(!isset($_SESSION)) {
session_start();
}
Session varible:
$_SESSION['lend_fname']=stripslashes($_POST['lend_fname']);
Calling the session varible to the input field for review
<?php if (isset($_SESSION['lend_fname'])) {echo
'value="'.htmlentities($_SESSION['lend_fname']).'"';}?>
The page starts at http://www.paulgdesigns.com/one2one/lend_bor_input.php
Im confused as to why they keep getting dropped and how to stop it.
Hopefully I have given enough information.
Thank you
Gary
__________ Information from ESET Smart Security, version of virus signature
database 4961 (20100320) __________
The message was checked by ESET Smart Security.
http://www.eset.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php