Created search user method

This commit is contained in:
Pierre
2017-05-27 10:52:12 +02:00
parent 5e03191c3d
commit f3f3713b34
4 changed files with 31 additions and 5 deletions

View File

@ -14,8 +14,28 @@ class searchUser {
* @param Integer $limit The number of results to return on the screen
* @return Array the result of the result
*/
public function search($query, $limit){
return array(1, 2);
public function search($query, $limit) : array{
//Prepare query string
$query = "%".str_replace(" ", "%", $query)."%";
//Prepare a request on the database
$tableName = "utilisateurs";
$conditions = "WHERE (nom LIKE ?) || (prenom LIKE ?) || (CONCAT(prenom, '%', nom) LIKE ?) || (CONCAT(nom, '%', prenom) LIKE ?) LIMIT ".$limit*1;
$datasCond = array($query, $query, $query, $query);
$fields = array("ID");
//Perform the request on the database
$results = CS::get()->db->select($tableName, $conditions, $datasCond, $fields);
//Prepare return
$return = array();
foreach($results as $value){
$return[] = $value["ID"];
}
//Return result
return $return;
}
}