Mysql
 sql >> Base de données >  >> RDS >> Mysql

Créer un tableau pour PDO à partir de variables transmises depuis jquery

Je ne sais pas si j'ai bien compris votre problème, mais vous pouvez essayer (ou commenter si je me suis trompé).

Remplacez ce fragment :

$stmt = $dbh->prepare("SELECT COUNT(guid) FROM full_db2 WHERE {$firstpara} = :{$firstpara} AND {$secondpara} = :{$secondpara} AND {$thirdpara} = :{$thirdpara}");

$stmt->execute($data);

avec ceci :

$validKeys = array('gender','maritalstatus', 'age');
    $sql = 'SELECT COUNT(guid) FROM full_db2';
    $any_condition = false;
    foreach($_GET as $key=>$val) {
       if (!empty($val) && in_array($key,$validKeys)) {
         if ($any_condition) {
           $sql .= ' AND '.$key.' = :'.$key;
         } else {
           $sql .= ' WHERE '.$key.' = :'.$key;
           $any_condition = true;
         }
       }
    }

    $stmt = $dbh->prepare($sql);

    foreach($_GET as $key=>$val) {

   if (!empty($val)  && in_array($key,$validKeys)) {
     $stmt ->bindValue(':'.$key, $val, PDO::PARAM_STR);
   }
}

$stmt->execute();

pour votre requête ajax, lisez simplement ici :Soumettre un formulaire à l'aide de jQuery

dans votre requête ajax, modifiez le format de ligne à partir de :data: {firstpara: para1, secondpara: para2 ,thirdpara: para3}

auxdata: {age: para1, maritalstatus: para2 ,gender: para3},