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

Codice PHP da reindirizzare se il campo mysql è completo

Prova questo.

include('connect.inc');
if (( $rows['food'] == "yes" ) || ( $rows['food'] == "no" )) {
header('location: mypagelocation.html');
exit;
}

oppure puoi scriverlo anche in questo modo.

include('connect.inc');
    if (in_array($rows['food'], array("yes","no"))) {
    header('location: mypagelocation.html');
    exit;
    }