Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a html form which have a select list box from which you can select multiple values because its multiple property is set to multiple. Consider form method is get method. The html code for form is as follows.

<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="get" action="display.php">
  <table width="300" border="1">
    <tr>
      <td><label>Multiple Selection </label>&nbsp;</td>
      <td><select name="select2" size="3" multiple="multiple" tabindex="1">
        <option value="11">eleven</option>
        <option value="12">twelve</option>
        <option value="13">thirette</option>
        <option value="14">fourteen</option>
        <option value="15">fifteen</option>
        <option value="16">sixteen</option>
        <option value="17">seventeen</option>
        <option value="18">eighteen</option>
        <option value="19">nineteen</option>
        <option value="20">twenty</option>
      </select>
      </td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td><input type="submit" name="Submit" value="Submit" tabindex="2" /></td>
    </tr>
  </table>
</form>
</body>
</html>

I want to display the selected values in select list box on display.php page. So how the selected values are accessed on display.php page using $_GET[] array.

Please reply Friends. Bye. Thank You.

share|improve this question

7 Answers

up vote 54 down vote accepted

If you want PHP to treat $_GET['select2'] as an array of options just add square brackets to the name of the select element like this: <select name="select2[]" multiple …

Then you can acces the array in your PHP script

<?php
header("Content-Type: text/plain");

foreach ($_GET['select2'] as $selectedOption)
    echo $selectedOption."\n";
share|improve this answer
saved my life! Thanks – blachawk Jul 31 '12 at 17:38

Change:

<select name="select2" ...

To:

<select name="select2[]" ...
share|improve this answer

Use the following program for select the multiple values from select box.

multi.php

<?php
print <<<_HTML_
<html>
        <body>
                <form method="post" action="value.php">
                        <select name="flower[ ]" multiple>
                                <option value="flower">FLOWER</option>
                                <option value="rose">ROSE</option>
                                <option value="lilly">LILLY</option>
                                <option value="jasmine">JASMINE</option>
                                <option value="lotus">LOTUS</option>
                                <option value="tulips">TULIPS</option>
                        </select>
                        <input type="submit" name="submit" value=Submit>
                </form>
        </body>
</html>
_HTML_

?>

value.php

<?php
foreach ($_POST['flower'] as $names)
{
        print "You are selected $names<br/>";
}

?>
share|improve this answer
thanks rekha_sri, work like charm in codeigniter. – arslaan ejaz Dec 14 '12 at 10:44

You can use this code to retrieve values from multiple select combo box

List Box Form Data

Combo Box
Option 1 Option 2 Option 3 Option 4 Option 5

   <?php
       $values = $_POST['ary'];

       foreach ($values as $a){
          echo $a;
      }
      ?>

share|improve this answer
   <?php
        if ($_POST){ 
        foreach($_POST['select2'] as $selected){
        echo $selected."<br>";
       }
      }
   ?>
share|improve this answer

I fix my problem with javascript + HTML. First i check selected options and save its in a hidden field of my form:

for(i=0; i < form.select.options.length; i++)
   if (form.select.options[i].selected)
    form.hidden.value += form.select.options[i].value;

Next, i get by post that field and get all the string ;-) I hope it'll be work for somebody more. Thanks to all.

share|improve this answer
<?php
    $devlanguage=$_POST['devlanguage'];
    if ($devlanguage)
    {
        foreach ($devlanguage as $lang)
        {
            $d[] = $lang ;
        }
    } 
    // build query to insert data into the Application table
    $qry = "INSERT INTO Application VALUES (".
    "'$app','$appname','$appdesc','$year','".print_r($d,true),"',".
    "'$Ecomments','$comments','$AppOwner','$db')";
    // execute query
    $added = execute_query($qry);
<?
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.