I have a sequence of forms that follows the following algorithm:
Form #1
- Prompt for input of value A.
- Send X* request with value A.
Form #2
- Display value A and prompt for input of value B.
- Send POST request with value A and B.
*Should X in step 2 be GET or POST? I was just going to make it POST, but hesitated and wondered if I should use GET since form #1 is just passing a value(s) to form #2 and not POSTing it to a database.
Thanks!