dinamik bir mysql arama dizesi oluşturma?

1 Cevap php

Ben basit bir arama sayfası oluşturmak için çalışıyorum, ama ben (değişken varsa vb uygun VE bulunuyor kullanarak) gerçek arama dizesini burada kod yazmak nasıl% 100 emin değilim:

if ($post) {

    //get all search variables
    $type = JRequest::getVar('type');
    $classifications = JRequest::getVar('classifications', array(0), 'post', 'array');
    $rating = JRequest::getVar('rating');
    $status = JRequest::getVar('status');
    $cterms = JRequest::getVar('cterms');
    $clientid = JRequest::getVar('clientid');
    $company = JRequest::getVar('company');
    $address = JRequest::getVar('address');
    $name = JRequest::getVar('name');
    $surname = JRequest::getVar('surname');
    $city = JRequest::getVar('city');
    $state = JRequest::getVar('state');
    $pcode = JRequest::getVar('pcode');
    $country = JRequest::getVar('country');

    //create search string
    echo "SELECT * FROM #__db_clients "; <- the query is supposed to be done here.. it's in as echo because I was trying to spit it out before trying to make it run.. :)

} else {

    echo 'There has been an error, please try again.';

};

Ben (eğer tip! = Null sonra SearchType = "burada type = 'X'") kullanarak denedim ama sonra yerleştirmek için nasıl çözemedim VE önce / sonra o yaparsa .. arama için gerekli eğer anlamda?

1 Cevap

Bu hızlı bir örnektir. Ben (? Zaman bir dize ya da karışık tiplerde) ne tür bir veri JRequest :: Bilgi getVar döner bilmiyorum ama bu size başlamak gerekir. Yöntemi kaçan foreach döngüsü içinde geçerlidir hangisi kullandığınızdan emin olun:

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.';
};