Does anyone know how to send a bunch of variables from one .php page to another? I know there is this method:
<A HREF="another.php?someVariable=$var1&someVariable2=$var2>Link</A>
but is there another method that does not require URL encoding? Can I just post it to the other .php? I would like to do this automatically... have the user fill out a form, which submits all their data to a form checking .php... if the checks fail (missing an email address, for example) then send them back to the form, but send all their original data with it.... All automatically without making them click a link or submit a form.
Any ideas?
-Kimball