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 an html dropdown box. Then I use an array to fill the items in it. The keys in this for each loop is just a number from 0 - 9. My problem now is how can I control what shows up as the default choice:

<?php foreach($cat_r as $k=>$c){ ?>
<option name="<?php echo $k + 1; ?>" value="<?php echo $k + 1; ?>" selected="<?php if($k==1){ echo "selected"; } ?>"><?php echo $k + 1; ?></option>
<?php } ?>

In this code, you can see that I'm attempting to make the 2nd item as the default choice. But it seems like I'm always brought to the last array item whatever number I type as the condition.

share|improve this question

2 Answers

up vote 2 down vote accepted

Try this:

<?php foreach($cat_r as $k=>$c){ ?>
<option value="<?php echo $k + 1; ?>" <?php if($k==1){ echo 'selected="selected"'; } ?>><?php echo $k + 1; ?></option>
<?php } ?>

Or, this format works too

<option value="foo" selected />
share|improve this answer
2  
selected="yes" is something you made up. That attribute has no value per definition, and if XML compliance is your goal the recommended way is to use selected="selected". – DanMan Apr 17 '11 at 10:40
And that's what I get for answering questions at 1am, that was bad. Thanks for the correction. Fixed it so there's no misinformation out there. – Coder1 Apr 17 '11 at 18:34
<?php foreach($cat_r as $k=>$c){ ?>
    <option name="<?php echo $k + 1; ?>" value="<?php echo $k + 1; ?>" 
    <?php if($k==1){ echo "selected=\"selected\""; } ?>>
    <?php echo $k + 1; ?>
    </option>
<?php } ?>
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.