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

PHP-Code zum Umleiten, wenn das mysql-Feld vollständig ist

Probieren Sie es aus.

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

oder du kannst es auch so schreiben.

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