problem with the radio button
I have 3 radio buttons and a button to send. I need that by clicking on the button the data is sent to the database. this is my code code.html <td><fieldset><label><input type='radio' id='presente' name='".$registroEstudiantes['id_estudiante']."' values='presente'>Presente</form></label></fieldset></td> <td><fieldset><label><input type='radio' id='ausente' name='".$registroEstudiantes['id_estudiante']."' values='ausente'>Ausente</form></label></fieldset></td> <td><fieldset><label><input type='radio' id='excusa' name='".$registroEstudiantes['id_estudiante']."' values='excusa'>Excusa</form></label></fieldset></td> echo "<td><input type='button' id='1' value='guardar' name='guardar' method='POST'></td> "; I have the connection to the database in conexion.php.. I need help with the button to save. I tried with the onClick and it does not work out, if someone here can give me help I would appreciate it.