我有这个 if 语句。它是一个 php 脚本的一部分,当单击一个按钮以确定它被转发到的页面时运行该脚本。我有一个表格,当管理员更改页面时会更新,这一切都很好。然而,由于某种原因,这总是转发到 scriptone。即使例如 scriptthree 肯定被选中。请问有什么建议吗?
$sql = "SELECT scriptName FROM selectedscript WHERE scriptSelected = '1'";
if($sql = "ScriptOne") {
header('Location: scriptone.php');
}
elseif ($sql = "ScriptTwo") {
header('Location: scripttwo.php');
}
elseif ($sql = "ScriptThree") {
header('Location: scriptthree.php');
}
else {
echo "Error";
}
谢谢
我尝试过双等号和三等号,但这会导致显示错误消息:(