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

Any possibility to get multiple values from multiple selection..

Sample Code below:

<form action="" method="post">
   <select name="category" multiple="multiple">
     <option value="Internet">Internet</option>
     <option value="Google">Google</option>
     <option value="Yahoo">Yahoo</option>
     <option value="Bing">Bing</option>
   </select><p/>
   <input type="submit" value="Submit" name="submit" />
</form>

<?php

echo $cat = $_POST["category"];

?>
share|improve this question

closed as not a real question by M42, Jocelyn, Jack, DrummerB, Graviton Oct 9 '12 at 6:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 8 down vote accepted

Yup,rename it ..

<select name="category[]" multiple="multiple">

This will do it. All the selected options will be stored in an array if you name it as category[]

Edit:

To get comma seperated values,use

foreach($_POST["category"] as $option)
{
   $option_array[] = $option;
}

$comma_separated = implode(",",$option_array); // give " " if you want space seperatd string
echo $comma_separated;
share|improve this answer
thanks Bhuvan.. – Manu Oct 4 '12 at 5:14
@Manu you can use implode to get comma seperated or space seperated options.. – Bhuvan Rikka 웃 Oct 4 '12 at 5:52
@Manu Check the edit – Bhuvan Rikka 웃 Oct 4 '12 at 5:56
thank you very much Bhuvan.. – Manu Oct 5 '12 at 10:30

use array like this in select

<select name="category[]" multiple="multiple">

now you will get array of selection.

share|improve this answer

You get an array from this so do like this to get all selected values:

foreach($_POST["category"] as $value){
   echo $value;
}

and you'll see result.

share|improve this answer
thanks Undrium.. – Manu Oct 4 '12 at 4:26
how can add commas and spaces between the values. (if select google and yahoo, the output is 'googleyahoo' now.) – Manu Oct 4 '12 at 5:13
$cat . ',' will give you a comma, you will have to remove the last one though at the end of the iteration. – Undrium Oct 8 '12 at 9:33

thanks guys.. but how can add commas and spaces between the values. (if select google and yahoo, the output is 'googleyahoo' )

<form action="" method="post">
   <select name="category[]" multiple="multiple">
     <option value="internet">Internet</option>
     <option value="google">Google</option>
     <option value="yahoo">Yahoo</option>
     <option value="bing">Bing</option>
   </select><p/>
   <input type="submit" value="Submit" name="submit" />
</form>

<?php

//echo $cat = $_POST["category"];

foreach ($_POST['category'] as $cat) {
    echo $cat;
}

?>
share|improve this answer

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