我有一个重定向 PHP 页面,它检查 URL 参数并根据变量“shore”是否为 1 重定向到两个页面之一。然而,我的问题是,无论我做什么,页面都会重定向到第一个选项。谁能看到我遗漏的任何明显的东西?
非常感谢
<?php
require_once('Connections/ships.php');
if ($_GET['shore'] = "1") {
header( 'Location: shore_establishment.php?ship_id=' .urlencode($_GET['ship_id']) . "?shore=1");
//echo"first";
} else if ($_GET['shore'] = "0") {
header( 'Location: shipinfo.php?ship_id=' .urlencode($_GET['ship_id']). "?shore=0");
//echo"second";
};
?>