Posted by Moot on 10/26/06 19:14
Auddog wrote:
> I'm needing to work with a bar code scanner and have come to realize that
> after scanning a barcode the unit actually does a hard return. What is the
> best way to variables from one page to another. I was thinking of creating
> 5 pages of for input and the last one would have the submit button. I just
> don't what would be the best way to pass the variables from page one, two,
> three.. etc to page 5. Thanks for any help you might be able to offer.
>
> A
Since each form submission is unique (ie: no relation to past form
submissions, as far as the server is concerned), the easiest way to
pass values across muti-part forms is to take those values submitted to
each part and place them in hidden form elements (<input
type="hidden">) and just keep passing them along until you're ready to
process the data.
[Back to original message]
|