dnienhaus Posted July 31, 2006 Share Posted July 31, 2006 I have some listboxes that a user will select values from and in turn it is supposed to take the selected value and print as strings to form a part number. I have all the boxes made but how can i return the value of an option selected in the list menu? i.e. <option value="L">Clutch Pedal Assy</option>how would i return or print to screen "L"? Quote Link to comment https://forums.phpfreaks.com/topic/16110-php-print-listbox-values/ Share on other sites More sharing options...
wildteen88 Posted July 31, 2006 Share Posted July 31, 2006 You'll want to give aname to the selectbox tag for your listboxes. then when you submit your form you use $_POSt['select_box_name']Changing select_box_name to the name of your select box. If its a multi listbox you'll want to add [] at the name of your select box name. Quote Link to comment https://forums.phpfreaks.com/topic/16110-php-print-listbox-values/#findComment-66402 Share on other sites More sharing options...
dnienhaus Posted July 31, 2006 Author Share Posted July 31, 2006 What if i have 6 listboxes and each one has a value i need returned and then the values come together to form one part number?can i do something like "$_POST['select_box_name', 'select_box_name', 'select_box_name']"? Quote Link to comment https://forums.phpfreaks.com/topic/16110-php-print-listbox-values/#findComment-66407 Share on other sites More sharing options...
wildteen88 Posted July 31, 2006 Share Posted July 31, 2006 In that case. Name each selectbox like this:part[]including the [] brackets. So you select box tag is like this:[code]<select name="part[]">// options here</select>[/code]then use a foreach loop like so:[code]$partNumb = '';foreach($_POST['part] as $part_k => $part_v){ $partNumb .= $part_v;}echo "Your partNumber is: {$partNumb}";[/code]That will then loop through each part selectbox and generate the 6 character part number. Quote Link to comment https://forums.phpfreaks.com/topic/16110-php-print-listbox-values/#findComment-66409 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.