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
ID Attribute is unique across the page. You should have different Ids for each radio button. Use below code to get the input value.
var inputUser=$('input:radio[name=interview]:checked').val();