Sorry I am not more explicit... What I have is two files, survey.php and survey.lib.php. i have built survey.php with radio buttons, and now i am not sure how to use survey.lib.php to print the radio buttons to an email. my text fields print with the code
$form_mail[] = array( "name" => "Name", "text" => "Name", "type" => "text", "required" => "Required" ) ;
and I haven't managed to find any string of code by looking around online for reading the radio dial input. I think what I am missing is the portion of the string that is bolded below:
$form_mail[] = array( "name" => "activity", "text" => "", "type" => "radio", "required" => "Required" ) ;
Does that clarify?
Am I on the right track?
I appreciate your help.