Mysql
 sql >> Database >  >> RDS >> Mysql

Analizza i risultati della query MySQL e forma l'array per if/else

Se hai bisogno che questi dati vengano caricati in in_array , quindi dovrebbe essere in un formato array, non puoi usare una stringa json.

$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
}