Hi, Maybe someone can take a look at the script below and tell how to make the bottom part work the same way the top part works. The top part (select box) works where the one item chosen is written to a hidden file and passed on to the next page, then on and on through several more pages and to the last page that emails the chosen items to our marketing dept. Problem is, it only allows one choice at a time. I tried it with the multiple option set but the final form shows only the last item chosen from the list of multiple items. So I tried with the checkboxes, but that doesn't work at all. ____________________________________________________________________________ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Simrad USA Brochures Request Page</title> </head> <body> <form method = post action = 'form_combos.php'> <? $name; $value; while (list($name, $value) = each($HTTP_POST_VARS)) { echo "<input type=\"hidden\" value=\"$value\" name=\"$name\">\n"; } ?> Please choose the brochures you are interested in receiving. <select name = 'listbox1'> <option selected value = ''>Select ...</option> <option>AP11</option> <option>AP12/AP14</option> <option>AP20 Series</option> <option>AP35</option> <option>AP45</option> <option>AP9MK3</option> <option>Tiller/Wheel Pilots</option> <option>WP5000</option> </select><br /><br /> <br /> <br /> <input type="checkbox">AP11<br /> <input type="checkbox">AP12/14<br /> <input type="checkbox">AP20 Series<br /> <input type="checkbox">AP35<br /> <input type="checkbox">AP45<br /> <input type="checkbox">AP9MK3<br /> <input type="checkbox">Tiller/Wheelpilots<br /> <input type="checkbox">WP5000<br /> <br /> <br /> <input type = submit> </form> </body> </html> ----------------------------------------------------------------------------------------------------------------------------------- On the checkboxes I had at first specified the name and value fields, but that didn't work either. My goal is to have the above list allow multiple choices that are passed to the next page, and so on through about 6 pages to the final page. Even better yet would be a text box where the end-user could specify a quantity of brochures, for multiple choices, that would be my preferred form. Thankyou for your help, Chip Wiegand Computer Services [EMAIL PROTECTED] Simrad, Inc Lynnwood, WA 425-712-1138 "There is no reason anyone would want a computer in their home." --Ken Olson, president, chairman and founder of Digital Equipment Corp., 1977 (-- Then why do I have nine? Somebody help me!) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]