Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have:

$selectedItem = '100,200,300';

And mysql load:

<select multiple="multiple" name="product_id">
   <?php
   $query = mysql_query("SELECT * FROM products ORDER BY id");
   while($row = mysql_fetch_array($query)){
      echo '<option value="$row[id]">$name</option>';
   }
   ?>
</select>

And I need $selectedItem (three values) to be:

<option value="$row[id]" selected>$row[id]</option>

How can I do that? I just can't find the solution when the selectedItem more than 1.

share|improve this question
isn't this php? somebody pls use the right tags! – nawfal Nov 9 '12 at 5:46
Sorry @nawfal, tags fixed. – Ogy Nov 9 '12 at 6:34

2 Answers

up vote 1 down vote accepted

You should make your $selectedItem variable an array (and name it plural since it can have multiple values; just my added preference =P):

$selectedItems = array(100, 200, 300);

Doing this, you'll be able to check if the current row's id is in the array or not (with in_array()) and then "select" that row:

while($row = mysql_fetch_array($query)) {
    $selected = in_array($row['id'], $selectedItems) ? ' selected="selected"' : '';
    echo '<option value="' . $row[id] . '"' . $selected . '>' . $row['id'] . '</option>';
}

Alternatively, if you can't "define" your list of selected items as an array and you will only have a comma-separated string, you can use explode() to turn it into an array:

$selectedItems = explode(',', $selectedItem);

This will split the $selectedItem variable by commas into an array stored into $selectedItems (usable with the above code).

share|improve this answer
Wow, it's working! Thank you for helping me out! =) – Ogy Nov 9 '12 at 5:21

You can do it like this:

while($row = mysql_fetch_array($query)){
     if ( str_pos( $selectedItem.',' , $row[id].',' ) !== false) {
        $sel = 'selected';
     } else {
        $sel = '';
     }
     echo "<option value='$row[id]' $sel>$row[id]</option>";
}
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.