I'm trying to make a PHP connection, but I keep getting this error. I am hoping someone can help.
My code gives the following error:
{
    "readyState": 0,
    "status": 0,
    "statusText": "NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'http://localhost/php/busca.php'."
}
My code is:
SendSQL.onclick = function() {
    var dataString='a=hello&b=world';
    $.ajax({
        type: "POST",
        url:"http://localhost/php/busca.php",
        data: dataString,
        async: false,
        dataType:'html',
        success: function(data){
                alert(data);
        },
        error: function(data){
            alert(JSON.stringify(data)); //Better diagnostics
        }
    });
};
And the file busca.php is:
<?php
    $a = $_POST['a'];
    $b = $_POST['b'];
    echo "$a, $b";
?>