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.
<form>
<?php
$stylesheet = array("style_default.css" => "Default", "style_red.css" => "Red");
foreach($stylesheet as $key => $value)
{
    echo '<input type="radio" name="style" value="'.$key.'" checked="';
    if($css == $key){echo 'yes';} else{echo 'no';}
    echo '" /> '.$value.'<br />';
}

?>

    <input type="submit" name="style_change" value="Spara inställningar" />
</form>

Here is the code I use to create radio-buttons. On my database I have a table that saves the value of the radio-buttons. I got visual proof on the page that the the path is correct and I have also checked so $css gives the right value with the help of echo. The value I have is "style_default.css", but I only get the button for red selected. Anyone who knows where all this went wrong?

share|improve this question
Where is $css comming from? – Babiker May 21 '11 at 4:08
It came from a piece of code higher up, among the mysql-code. As I said: I've checked so it gives out the right value. – Richard Atterfalk May 21 '11 at 4:29

2 Answers

up vote 1 down vote accepted
$css = "style_default.css"; //assumption
$stylesheet = array("style_default.css" => "Default", "style_red.css" => "Red");
foreach($stylesheet as $key => $value){
    echo '<input type="radio" name="style" value="'.$key.'" '; echo ($css == $key)? 'checked>' : '">'; echo $value.'<br/>';
}
share|improve this answer
Now they are both blank, I'm afraid. – Richard Atterfalk May 21 '11 at 4:27

The checked attribute accepts only checked and an empty string as its value. For example: checked="checked" or checked="" are correct.

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.