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 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>"; } 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 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
Archived
This topic is now archived and is closed to further replies.