using session_register() for each var I found to be extremely cumbersome and unefficient considering the number of vars involved, instead I used a scheme like this
foreach ($_POST as $value => $key)
{
$_SESSION[$value] = $_POST[$value];
}
this takes all of my $POST vars and puts them into a $SESSION array of the same name, now I can access those vars from any page I need to rather than just in the page originally posted to, this has worked very well for me in that I now use the $_SESSION array values to do all of my formulas for shipping, tax, subtotal, and grand totals etc. and the appear and reappear after reload on all pages they are used its just that in the first page where orig quantities are entered "Formpage "A" " .
So I have to use $_POST on the first page because its a form, but is there a way to store them as cookie when they post, so that when the page is reloaded they are still there???
😕 🙁 😕
Kenderized