I am trying to pass the value of an array through sessions.
I start the session at the very beginning of the script, but then I resister the variables within a function that is called in the script.
I resister the variables with session_register('variableName');
Then on the page I want to retrive the variables I start the session at the beginning of the script. Then try using the variables striat out.
echo "$variableName";
This does not work I have gotten it to work on a basic page where I just register the variables call another page and print out the variables, but when I register the variables inside a function withing a script is when it doesn't work
Thanks for any help
Ben