You can pass additional information such as session data to the serverside handler easily. Append the parameter and value to the URL as part of the query string. You must make sure to escape special characters or the applet will complain about not been to establish a connection to the URL provided.
Example: <param name="url" value = "http://67.131.250.110/upload.php?id=1&greeting=Hello+World">
How these addition parameters can be retrieved depends on the programming or scripting language you use. With most, you will find that a new variable or object with a name identical to the name of your parameter is created by the upload handler script.
If you are using perl with the CGI module you may find that these additional parameters
cannot be retrieved via a call to the param() method. However you can still retrieve this
information by examining $ENV{'QUERY_STRING'}
When you need to pass a lot of data, it may be impractical to use the approach described above. In such a situation you can either the directly embed the applet into an HTML form, or use a form on a separate page to gather the data.