Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como posso executar uma consulta mysql quando o usuário seleciona uma nova opção em um campo de seleção?


Sim, você precisa usar ajax aqui. Verifique o código e as notas a seguir.

Escreva a função que retorna um ActiveXObject() que faria uma chamada ajax como
function getXMLHTTP() {
    var xmlhttp = false;
    try {
        xmlhttp = new XMLHttpRequest();
    } catch (e) {
        try {
            xmlhttp = new XMLHttpRequest();
        } catch (e) {
            try {
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {
                try {
                    xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
                } catch (e1) {
                    xmlhttp = false;
                }
            }
        }
    }

    return xmlhttp;
}

Em seguida, escreva uma função específica para seu site que obtenha os dados desejados como
function getProducts(){
var select1 = document.getElementById("cboCategory");
var strURL = "getproducts.php?city="+select1.options[select1.selectedIndex].value;

var req = getXMLHTTP(); // function to get xmlhttp object
if (req) {
    req.onreadystatechange = function() {
        if (req.readyState == 4) { // data is retrieved from server
            if (req.status == 200) { // which reprents ok status
                document.getElementById('productsdiv').innerHTML = req.responseText; // div to be updated
            } else {
                alert("[GET Products]There was a problem while using XMLHTTP:\n" + req.statusText);
            }
        }
    };
    req.open("GET", strURL, true); // open url using get method
    req.send(null);
}

}

Esta função seria chamada no evento change do cboCategory selecione opções, então o html correspondente seria
<select onchange="getProducts()" id="cboCategory" class="box">
  ...
</select>
<!-- Can be anywhere on same page -->
<div id="productdiv"> </div>

Sua página getproduct.php retornaria um html como string que sobrescreveria o conteúdo de producstdiv tag em sua página html.

Você também pode retornar dados do php como . Verifique sua tag wiki para mais informações. Você também pode usar para fazer uma chamada ajax.