Multiple forms on one page

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Multiple forms on one page

    I am trying to put together a stripped-down online order form that allows a
    user to enter quantities ordered for a bunch of products, as well as their
    mailing address.

    I'd like to set the page up with two forms so that when a person submits it,
    the mailing address info from one form is put into an email and an iterative
    function goes through and collects the info about what was ordered from the
    other form. I'm trying to avoid having to hand-code all the product selections.

    Is this the best way to go about doing this, and if so, where do I go to find
    out how to set up the forms in this manner? Any help would be greatly
    appreciated!

    steel_quill Guest

  2. Similar Questions and Discussions

    1. Multiple Forms in one page
      Is there any way to have multiple forms in one page without having the forced space between the submit buttons that each form has? In other...
    2. Advanced OOP: Best OO design for rendering multiple page types to multiple devices
      Hoping to get some ideas from more experienced hands regarding the best way to use object-oriented design to assist my development of a content...
    3. [PHP] multiple FORMS on same page problem.
      I am creating a page with 2 buttons. One which will refresh the page and the other that will go to another page. My problem that I need to put all...
    4. How to include multiple <forms> on one ASP.NET page
      Hi, I need to create an ASPX page that includes both traditional HTML Forms (which are submitted to a third-party site like a travel booking...
    5. problem with have multiple subjects appear on the web page in multiple lines
      Hello, group I have got this problem, hoping someone can help me to figure it out what is wrong. I have some fields in the database:...
  3. #2

    Default Re: Multiple forms on one page

    Two forms will not work in the way that you want because when the button on
    pressed on one, only the values contained within that form will be passed.
    You need to contain all your form variables within a single form.

    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "steel_quill" <webforumsuser@macromedia.com> wrote in message
    news:cvgbn0$mb8$1@forums.macromedia.com...
    > I am trying to put together a stripped-down online order form that allows
    a
    > user to enter quantities ordered for a bunch of products, as well as their
    > mailing address.
    >
    > I'd like to set the page up with two forms so that when a person submits
    it,
    > the mailing address info from one form is put into an email and an
    iterative
    > function goes through and collects the info about what was ordered from
    the
    > other form. I'm trying to avoid having to hand-code all the product
    selections.
    >
    > Is this the best way to go about doing this, and if so, where do I go to
    find
    > out how to set up the forms in this manner? Any help would be greatly
    > appreciated!
    >

    Paul Whitham TMM Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139