I'm trying to use session variables to create folders on-demand. The intended process to creating sub-folders is as follows:
A user fills out an html form, which stores the information in $_SESSION variables. Once the form is saved the user uploads files via a java applet. With the session variables set, once the web server receives the HTTP request, the php script creates sub-folders and processes the files via move_uploaded_file.
What I figured out is that when the user fills out the form, the session variables are set BUT on the php script page when it tries to use the session variables to create the sub-folders - the session variables are empty.
When I use a traditional html form to upload files, the php script works just fine - the session variables are defined and used.
Anyone know why in spite of the session variables being set, the php script shows them to be unset when I upload files via the java applet?

