Skip to content Skip to sidebar Skip to footer

Getting Radio Button Value And Sending Through Ajax To Php

I have a poll on my website which displays radio buttons next to each answer. When the user selects an option and submits, im running a a php script via ajax to insert the value or

Solution 1:

$("#submit_vote").click(function(e){ 

    $.ajax( {
      type: "POST",
      url: "ajax_submit_vote.php",
      data: $('#poll_form').serialize(),
      success: function( response ) {}
    });

});

You should then have the POST variable "poll_option" accessible in your PHP script.

Solution 2:

var option = $('input[type="radio"]:checked').val();

$.ajax({
    type: "POST",
    url: "ajax_submit_vote.php",
    data: { poll_option : option }
});

In the PHP you are reading $_POST['poll_option'] therefore you must use poll_option as the key in your data object. Also, the value is stored in option not $optionID as you were trying to use.

The $ is a valid character in variable names in Javascript, it doesn't do anything special itself but some coders prefix anything that is a jQuery object with $ so they can glance through code and easily see what variables already have the jQuery wrapper.

For example:

var$option = $('input[type="radio"]:checked'); // $option is the jQuery wrapped HTML elementvar myValue = $option.val(); // we know $option already has the jQuery wrapper so no need to use the $(..) syntax.

Solution 3:

$optionID = "="+optionID;

I don't quite understand what you are trying to do here o.O, in javascript you don't define your variables using $.

data: { optionID : option}

using it like this should work. You would retrieve it like this in PHP:

$option_value=$_POST['optionID'];

Post a Comment for "Getting Radio Button Value And Sending Through Ajax To Php"