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

criando uma string de pesquisa mysql dinamicamente?


Este é um exemplo rápido. Eu não sei que tipo de dados JRequest::getVar retorna (sempre uma string ou tipos mistos?) mas isso deve começar. Certifique-se de usar qualquer método de escape que se aplique dentro do loop foreach:
if ($post) {
    $criteria = array();
    //get all search variables
    $criteria['type'] = JRequest::getVar('type');
    $criteria['classifications'] = JRequest::getVar('classifications', array(0), 'post', 'array');
    $criteria['rating'] = JRequest::getVar('rating');

    //if there are some criteria, make an array of fieldName=>Value maps
    if(!empty($criteria)) {
        $where = array();
        foreach($criteria as $k => $v) {
            //IMPORTANT!!
            //$v is the value of the field, needs to be quoted correctly!!
            $where[] = "$k = '$v'";
        }
    }
    //create search string
    $query =  "SELECT * FROM #__db_clients";

    if($where) {
        $query .= " where " . join(' AND ', $where);
    }   
} else {    
    echo 'There has been an error, please try again.';
};