Radio button

Hi everyone

I’d appriciate everyone who will take time to help me out with this:
I got a table with 8 cells, in each cell I got 3 radio buttons, on the top of the
table I got a text field and a submit button. when I write a name in text field
and select a radio button then click submit, the name will show next to radio button.

thank in advance
Lary

If I understood correctly then try this…
[php]

<?php echo " "; $i='0'; while($i<= 23) { if(isset($_POST['selection'])){ $selection = $_POST['selection']; $text = $_POST['text']; } $new = $i % 3; if($new == '0') { echo ""; echo "
"; } else if($i == '0'){ echo "
"; } if($i == "$selection"){ echo "$text
"; } else { echo "
"; } $i++; } echo "
"; ?>

[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service