我正在使用 php 创建一个页面,并且我遇到了一个具有两个条件的 if 并且我需要如果条件为真按钮将我发送到另一个页面,这可能吗?我现在有这个代码:
按钮:
<form method="post">
<input type="submit" name="submit" class="buttonStyle" />
</form>
PHP 脚本:
<?php
$homepage = "/site/nelson.php";
$currentpage = $_SERVER['REQUEST_URI'];
if(isset($_POST['submit']) && $homepage==$currentpage)
{
#Here should be the redirect
}
?>
希望有人可以帮助我:) 谢谢!
编辑:找到解决方案,谢谢(!!!!!!!!!!!!)所有人!