wwfc_barmy_army Posted October 27, 2007 Share Posted October 27, 2007 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 https://forums.phpfreaks.com/topic/74986-solved-radio-boxes-from-database/ Share on other sites More sharing options...
MadTechie Posted October 27, 2007 Share Posted October 27, 2007 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 https://forums.phpfreaks.com/topic/74986-solved-radio-boxes-from-database/#findComment-379212 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.