Hello everyone, I need help with what to do with my page since SESSION won't work for me. The reason that I can't use sessions is because register_globals is set to "off" on the server and I am not allowed to change that.
I need to collect data input by the user on Page-1, then I need to be able to retrieve that data on Page-2. The data consists of over thirty variables so I really do not want to store the info the URL; I also do not want to use cookies to avoid problems if the user has cookies disabled.
Can someone please direct me to what I should use instead of "$_SESSION"?
Code example is as follows:
***Page-1************
<?php session_start(); ?>
HTML Stuff
BODY Stuff
// Get values from user inputs in the form and store them in SESSION variables
$SESSION['Taxes'] = ($POST['element_5_1']+0);
$SESSION['Loan1'] = ($POST['element_8_1']+0);
$SESSION['Loan2'] = ($POST['element_9_1']+0);
etc...
***Page-2************
// Retrieve the SESSION variables and store them in new variables for calculation
$Taxes = ($SESSION['Taxes']+0);
$Loan1 = ($SESSION['Loan1']+0);
$Loan2 = ($_SESSION['Loan2']+0);
etc...
Thank you!