graham23s Posted August 12, 2007 Share Posted August 12, 2007 Hi Guys, i now know how to display the relevant data a user has selected using drop down boxes and arrays like: <td align="right"><b>Format</b></td><td align="center"><select name="format">'; ######################################################################### foreach ($format_arrays as $value) { echo "<option Value=\"{$value}\""; if ($value == $format) { echo 'SELECTED'; } echo ">{$value}</option>"; } ######################################################################### echo ' </select> but im not sure how to do the same with radio buttons any help would be appreciated cheers Graham Quote Link to comment https://forums.phpfreaks.com/topic/64549-solved-radio-boxes-to-display-data/ Share on other sites More sharing options...
hitman6003 Posted August 12, 2007 Share Posted August 12, 2007 foreach ($format_arrays as $value) { echo "<option Value=\"{$value}\""; if ($value == $format) { echo 'checked="checked"'; } echo ">{$value}</option>"; } Quote Link to comment https://forums.phpfreaks.com/topic/64549-solved-radio-boxes-to-display-data/#findComment-321803 Share on other sites More sharing options...
graham23s Posted August 12, 2007 Author Share Posted August 12, 2007 Thanks mate:) Graham Quote Link to comment https://forums.phpfreaks.com/topic/64549-solved-radio-boxes-to-display-data/#findComment-321843 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.