cemzafer Posted November 22, 2006 Share Posted November 22, 2006 Hi all,I have a form which consists radio buttons, so I write radio button values to database,but I cant show radio buttons checked again.Any help will be appreciated, thanks. Link to comment https://forums.phpfreaks.com/topic/28095-radio-button/ Share on other sites More sharing options...
Orio Posted November 22, 2006 Share Posted November 22, 2006 You need to use inside your input tag checked="checked".Example-[code]<form>Male: <input type="radio" checked="checked"name="Sex" value="male"><br>Female: <input type="radio"name="Sex" value="female"></form>[/code]The radio button that represents "male" will be checked.So you you find out which button is selected in the database, and add the "checked=checked" part to the button that should be checked.Orio. Link to comment https://forums.phpfreaks.com/topic/28095-radio-button/#findComment-128513 Share on other sites More sharing options...
cemzafer Posted November 22, 2006 Author Share Posted November 22, 2006 switch ($sek1_montipib){ case 'duvar1': $sek1_duvar = "checked"; break;}echo "<input style='font-size: 5px' type='radio' name='sek1_montipi' tabindex=40 checked='<?php echo $sek1_duvar?>'>";can I use something like above? Link to comment https://forums.phpfreaks.com/topic/28095-radio-button/#findComment-128528 Share on other sites More sharing options...
cemzafer Posted November 23, 2006 Author Share Posted November 23, 2006 Okey it is running well now, thanks anyway.switch ($sek1_montipib){ case 'duvar1': $sek1_duvar = "checked"; break;}echo "<input style='font-size: 5px' type='radio' name='sek1_montipi' tabindex=40 [b]$sek1_duvar[/b]>"; Link to comment https://forums.phpfreaks.com/topic/28095-radio-button/#findComment-129040 Share on other sites More sharing options...
JasonLewis Posted November 23, 2006 Share Posted November 23, 2006 yes, you dont have to go checked="checked". just adding the checked will make it selected. Link to comment https://forums.phpfreaks.com/topic/28095-radio-button/#findComment-129046 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.