gpt4 book ai didi

如果 mysql 字段完整则重定向的 PHP 代码

转载 作者:行者123 更新时间:2023-11-29 04:27:14 25 4
gpt4 key购买 nike

我想创建一个页面,如果有人已经输入了他们的数据,它将把他们重定向到一个页面,上面写着“抱歉,您已经做出了选择”。最简单的字段是 attendance1,其中值是"is"或“否”,因此如果它是这些值之一,它将重定向到我想要的页面。我页面的代码在这里:http://pastebin.com/1D6PrmBv

最佳答案

试试这个。

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

或者你也可以这样写。

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

关于如果 mysql 字段完整则重定向的 PHP 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9169676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com