these are my two textboxes
<input name="temp" type="text" id="authnames" />
<input name="qot" type="text" id="qid" value=""/>
and i am gettting value in the first textbox, i can see it in screen (the one with id authnames)
now i need to pass that value to via jquery/ajax to a new php page and need to retrieve it there
below is my jquery/ajax code, and see the way i am passing it, is this the correct way, coz idont think i am getting any value in autocompletequote.php
, what am i doing wrong?
$(document).ready(function(){
$("#qid").autocomplete({
source: "autocompletequote.php",
minLength: 1,
data: { postcode: $("#authnames").val(),
type: "post",
dataType: "json",
success: function(data) {
console.log( data );
console.log("hi");
}
},
select: function (event, ui) {
var label = ui.item.label;
var value = ui.item.value;
//alert(label);
alert(value);
}
});
});
there are the two codes i used to retrieve value value in "authnames"
$author = $_POST['postcode'];
and
$author = $_GET['postcode'];
is this correct too?
i have written 2 queries in autocomplete.php
one query do not need value of $author and other needs value of $author,
first query is working fine second is not working its returning null
please help me