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'm making a forum software, and I need to put an array into a drop down selection box. Like in the administration panel, have a drop down box that lists all of the current forums, so you choose one to delete or modify.

I can get the array fine, but how would I put that in a drop down box, or is there an alternative?

$select_forums = mysql_query("SELECT name FROM forums");

while ($row = mysql_fetch_array($select_forums, MYSQL_ASSOC)) {
    printf (" Name: %s", $row["name"]);
}
share|improve this question
stackoverflow.com/questions/5249825/… Here you go. – abelito Nov 26 '11 at 13:51

1 Answer

up vote 2 down vote accepted
<select>
  <?php while ($row = mysql_fetch_array($select_forums, MYSQL_ASSOC)) { ?>
   <option value="<?php echo $row["id"] ?>"><?php echo $row["name"] ?></option>
  <?php }?>
</select>
share|improve this answer
Hey thanks for the answer, that works, but, it's skipping the first forum and not putting it in the list, any idea why? – Darren Nov 26 '11 at 14:05
Are you using any other mysql functions between the query and this code? The fetch functions use an iterator; you may need to use mysql_data_seek to reset it. – nkorth Nov 26 '11 at 16:15
Follow nkorth.....comment other mysql functions between query and code...you will get the bug....... – vikas Nov 26 '11 at 20:56
make it shorter: instead of <?php echo do <?= – Adam Sack Nov 27 '11 at 0:01

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.