I installed your plugin and saved the data form to MySQL database and everything worked fine. Then I added your Radio Buttons.
part of the process-form.php: … ( $radioButton2 = new Quform_Element(‘radio_button2’, ‘Radio button 2’); $radioButton2->addValidator(‘required’); $form->addElement($radioButton2); … …$query .= “radio_button2 = ‘” . mysql_real_escape_string($form->getValue(‘radio_button2’)) . “‘;”;
Finally I get this error message: “There was a problem. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘radio_button2 = ‘Yes” at line 1″
I have tried different things like INT instead of VARCHAR, but the values are not submitted. Can you help me please?