Hi,
I am using a html form which has text boxes and radio buttons. The content in the text boxes are mandatory, but the user wont need to select all radio buttons. He can select any one or two radio buttons in the list of ten topics.
Can you help me out how to pull the value only from the selected radio buttons through PHP? I need all the selected values to be mailed to my mail-id?
[php]
<?php $to = "[email protected]"; $from = $_REQUEST['ename']; $subject = "PHP Test Mail"; $message = $_REQUEST['radiobuttonname']; [/php] //how to pull the data from the selected radio button in the form? Kindly help