Jump to content

[SOLVED] Radio Boxes from database?


wwfc_barmy_army

Recommended Posts

Hello.

 

I've got this code:

 

  
<?php

$result = mysql_query("SELECT show FROM optionaltext WHERE id= 1");
  
$row = mysql_fetch_array($result);
$show= $row['show'];
// So $show will have the value Y or N.
?>

<p>
    <label>
Would you like this page to be displayed?<br/>
      <input type="radio" name="show" value="Y" />
      Yes</label>
    <br />
    <label>
      <input type="radio" name="show" value="N" />
      No</label>
    <br />
  </p>

 

It's a radio button group, one being Yes and one being No with the values Y and N.

 

I have a database field which is an Enum type which will either be Y or N. How would i go about making it so when i get the value that is already in the database it automatically selects Yes if the value in the field is Y and No if N?

 

Thanks.

Link to comment
Share on other sites

try this

 

  
<?php

$result = mysql_query("SELECT show FROM optionaltext WHERE id= 1");
  
$row = mysql_fetch_array($result);
$show= $row['show'];
// So $show will have the value Y or N.
$sel = ($show == "Y")?"checked=\"checked\"":"";
echo "Would you like this page to be displayed?<br/>";
echo "option<input type=\"radio\" name=\"show\" value=\"Y\" $sel>";
echo "option<input type=\"radio\" name=\"show\" value=\"N\" $sel>";

?>

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.