I\'m borrowing/adapting this simple html/javascript form set up to put some data in the database. The original code uses text fields in the form, but I\'m using radio button
Do not repeat id's.It is best practice to use only one id per page as it must be unique.You can group the radio buttons using name attribute.
use $('input[name=interview]') to get the value.
$('input[name=interview]')