I used jquery-ajax to search a particular variable in database and return it back ,so that I can append it on my html page. The php file which searches in the database is
$q="SELECT abc FROM xyz where axb='".$_GET['var']."'";
$sql = mysql_query($q) or die(mysql_error());
$row = mysql_fetch_array($sql);
$temp=$row['company'];
$k['na'] = $temp;
echo json_encode($k);
?>
This file is showing the correct output if I try using the URL which is
{"na":"Microsoft Corporation"}
but the jquery which should parse it and append to a div is returning null Here is the code
function name() {
$.ajax({
type: 'GET',
async: false,
dataType: "json",
url: dir + 'name.php?tick=' + $("#tickerid").val(),
success: function(name) {
alert("hello");
alert(name['na']);
$("#nam").html('<p>' + name['na'] + '</p>');
}
});
}
but if I place a string in the file in place of $row[''];
$temp=$row['company'];
//$k['na'] = $temp;
$k['na'] = "Microsoft";
echo json_encode($k);
The url output is same {"na":"Microsoft"} and the jquery is successful appending it in the html.
Can anyone tell me what has gone wrong, since the php is returning the same thing for both the variable and string , what is wrong with my jquery code which is trying to retrieve it??
dir- if you're using a relative URL, are you sure it's correct? Also, in your jQuery code you're specifying atickparameter, but in your PHP you seem to be (I don't really know PHP) using avarGET parameter. – Anthony Grist Aug 28 '12 at 8:24