Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-26-2008, 04:13 AM   PM User | #1
Bob42
Regular Coder

 
Join Date: Jul 2007
Posts: 100
Thanks: 1
Thanked 0 Times in 0 Posts
Bob42 is an unknown quantity at this point
radio buttons

I am coding a script that takes info from a database and displays it on a page. Right now there is a field in my database called "status" and I want the value in that field to be displayed in the form of radio buttons.

Code:
<input type=\"radio\" name=\"status\" value=\"{$row['status']}\" checked=\"checked\" /> Administrator
&nbsp;&nbsp;<input type=\"radio\" name=\"status\" value=\"{$row['status']}\" checked=\"checked\" /> Manager
&nbsp;&nbsp;<input type=\"radio\" name=\"status\" value=\"{$row['status']}\" checked=\"checked\" /> Moderator
So if "Administrator" is placed in the "status" field, then the Administrator button would be selected.
Bob42 is offline   Reply With Quote
Old 01-26-2008, 05:07 AM   PM User | #2
Inigoesdr
Super Moderator


 
Inigoesdr's Avatar
 
Join Date: Mar 2007
Location: Florida, USA
Posts: 3,601
Thanks: 2
Thanked 397 Times in 390 Posts
Inigoesdr is a jewel in the roughInigoesdr is a jewel in the roughInigoesdr is a jewel in the rough
The value for radio buttons should be static, and you set the correct one to checked based on the current value in $row:
PHP Code:
echo "<input type=\"radio\" name=\"status\" value=\"Administrator\" " . ($row['status'] == 'Administrator' ' checked="checked"' '') . "/> Administrator&nbsp;&nbsp;
<input type=\"radio\" name=\"status\" value=\"Manager\" " 
. ($row['status'] == 'Manager' ' checked="checked"' '') . "/> Manager&nbsp;&nbsp;
<input type=\"radio\" name=\"status\" value=\"Moderator\" " 
. ($row['status'] == 'Moderator' ' checked="checked"' '') . "/> Moderator"
Inigoesdr is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:39 AM.


Advertisement
Log in to turn off these ads.