Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Analysieren Sie mySQL-Abfrageergebnisse und bilden Sie ein Array für if/else

Wenn Sie möchten, dass diese Daten in in_array geladen werden , dann sollte es sich um ein Array handeln, Sie können keine JSON-Zeichenfolge verwenden.

$stmt = $dbh->prepare('SELECT DISTINCT cohort_id FROM table_cohorts'); 
$stmt->execute();
$cohort_ids = array();
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
    $cohort_ids[] = $row['cohort_id'];
}

if(in_array($user_input, $cohort_ids)) {
    // do the rest
} else {
    // oops your input is not any of those
}