I'm not sure if that's the best way to describe what I'd like to do, so here's the scenario:
I'm setting up a "store" for online registration for a conference. I'd like to provide one page with all the selections a person will need to make. My thoughts are these:
Registration Type (radio buttons):
o Student (p1)
o Full (p2)
_ Continuing Ed Credits (p3) (checkbox)
Workshop selection 1 (radio buttons):
o Workshop A (p4)
o Workshop B (p5)
Workshop selection 2 (radio buttons):
o Workshop C (p6)
o Workshop D (p7)
(Submit Button goes to the shopping cart)
I was thinking that the form could pass the cart links to the next pages, but I have no idea if the cart can handle multiple items at once. I was looking at the help page for cart links and I thought that this might be possible.
For example, if someone choses "Student registration" "CE credits" "Workshop 1" and "Workshop 3" the query would be something like:
Submit action - /cart/add/e-p1_q1&p3_q1&p4_q1&p6_q1?destination=cart . Does this type of query string work?


