Jump to content

[SOLVED] Radio boxes to display data


graham23s

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.