Skip to main content

JSON PHP data returning null



i am trying to fetch a PHP script using AJAX and return the values as JSON. For some reason, my script fails and i am trying to figure out the problem. When i enter a value form the database into the address bar, like







www.someaddress/post.php?kinaseEntry=aValue







i get a json out put like so;







{"kinaseSKU":null,"url":null,"molecularWeight":null,"tracerSKU":null,"antiSKU1":"antiSKU1","antiSKU2":"antiSKU2","bufferSKU":"bufferSKU","tracerConc":null,"assayConc":null}







My php file looks like so;







<?php







//Include connection to databse require_once 'connect.php';







$kinase = mysql_real_escape_string ($_POST["kinaseEntry"]);



mysql_query('SET CHARACTER SET utf8');



$findKinase = "SELECT * FROM kbaData where cleanSKU = '" .$kinase. "' ";



if ($result = mysql_query($findKinase)) {



$row = mysql_fetch_array($result, MYSQL_ASSOC);



$kinaseSKU = $row['cleanSKU'];

$url = $row['url'];

$molecularWeight = $row['molecularWeight'];

$tracerSKU = $row['tracerSKU'];

$antiSKU1 = $row['antiSKU1'];

$antiSKU2 = $row['antiSKU2'];

$bufferSKU = $row['bufferSKU'];

$tracerConc = $row['tracerConc'];

$assayConc = $row['assayConc'];





/* JSON ROW */

$json = array ("kinaseSKU" => $kinaseSKU, "url" => $url, "molecularWeight" => $molecularWeight, "tracerSKU" => $tracerSKU, "antiSKU1" => $antiSKU1, "antiSKU2" => $antiSKU2, "bufferSKU" => $bufferSKU, "tracerConc" => $tracerConc, "assayConc" => $assayConc );



} else {



/* CATCH ANY ERRORS */

$json = array('error' => 'Mysql Query Error');

}



/* SEND AS JSON */

header("Content-Type: application/json", true);



/* RETURN JSON */

echo json_encode($json);



/* STOP SCRIPT */

exit;







?>





Am I going about this the wrong way? or have i done this wrong?





EDIT: Here is my jquery/ajax that calls the php script;







$(document).ready(function() {









$('#kinaseEntry').change(function () {



var kinaseEntry = $('#kinaseEntry').val();

var dataString = 'kinaseEntry' + kinaseEntry;



$('#waiting').show(500);

$('#message').hide(0);

alert(kinaseEntry);



//Fetch list from database

$.ajax({

type : "POST",

url : "post.php",

datatype: "json",

data: dataString,

success : function(datas) {

alert("datas" + datas);

},

error : function(error) {

alert("Oops, there was an error!");

}

});

return false;

});







});


Comments

  1. First I am not sure if if (isset($_POST['kinaseEntry'])) will work for what you have shown. The URL you have shown is a get request, so if you want access to that variable you will have to use $_GET['kinaseEntry']. If you need to do POST change the method attribute in your form to <form method="POST"> that will give you the post variable.

    ReplyDelete
  2. Your problem appears to be that there wasn't actually a row returned from your query. Try:

    $result = mysql_query($findKinase);
    if ($result !== false && mysql_num_rows($result) > 0) {
    // your code
    }


    $result is false in this case if there was an error in the query. If there was no error, then check to see if there were actually rows returned. If there were more than 0 rows returned, then attempt to extract data.

    ReplyDelete
  3. The mysql_query function returns a true value even if 0 rows are returned. It returns false only when there was a database error. So i believe it executes a query and there are no results, so there are null values in the JSON. Try to use mysql_num_rows:

    $findKinase = "SELECT * FROM kbaData where cleanSKU = '" .$kinase. "' ";

    if ($result = mysql_query($findKinase)) {
    $json = array('error' => 'Mysql Query Error');
    }else{
    $num_rows = mysql_num_rows($result);
    if($num_rows > 0){
    // Do sth with the results
    }else{
    $json = array('error' => 'No results');
    }
    }

    ReplyDelete
  4. Yeah, you're getting back an array of rows, so that doesn't really work as you'd expect it to. This should fix it, but I don't think it is the best approach (but I think it should work anyway).

    $kinase = mysql_real_escape_string ($_POST["kinaseEntry"]);

    mysql_query('SET CHARACTER SET utf8');

    $findKinase = "SELECT * FROM kbaData where cleanSKU = '" .$kinase. "' , LIMIT 0,1";

    if ($result = mysql_query($findKinase)) {

    $row = mysql_fetch_array($result, MYSQL_ASSOC);

    $kinaseSKU = $row[0]['cleanSKU'];
    $url = $row[0]['url'];
    $molecularWeight = $row[0]['molecularWeight'];
    $tracerSKU = $row[0]['tracerSKU'];
    $antiSKU1 = $row[0]['antiSKU1'];
    $antiSKU2 = $row[0]['antiSKU2'];
    $bufferSKU = $row[0]['bufferSKU'];
    $tracerConc = $row[0]['tracerConc'];
    $assayConc = $row[0]['assayConc'];


    /* JSON ROW */
    $json = array ("kinaseSKU" => $kinaseSKU, "url" => $url, "molecularWeight" => $molecularWeight, "tracerSKU" => $tracerSKU, "antiSKU1" => $antiSKU1, "antiSKU2" => $antiSKU2, "bufferSKU" => $bufferSKU, "tracerConc" => $tracerConc, "assayConc" => $assayConc );

    } else {

    /* CATCH ANY ERRORS */
    $json = array('error' => 'Mysql Query Error');
    }

    /* SEND AS JSON */
    header("Content-Type: application/json", true);

    /* RETURN JSON */
    echo json_encode($json);

    /* STOP SCRIPT */
    exit;

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.