我想在 if 条件下重定向页面。
这是我的 html 页面
<form name="frmpayment" enctype="application/x-www-form-urlencoded" action="payment_mode.php" method="POST">
<table>
<tr>
<td><label for="mode">Select Mode</label></td>
<td>
<select name="selectmode" id="slctmode" size="1">
<option selected>Selected Mode</option>
<option value="1">Online Payment</option>
<option value="2">Cash on Delevery</option>
</select></td></tr>
<tr><td></td><td>
<input type="submit" name="btnmode" value="Done"/>
</td></tr></table>
</form>
这是我的 payment_mode.php 页面
<?php
$i= $_POST['selectmode'];
if($i>1)
{
header("Location : detail.php");
}
else
{
header("Location : home.php");
}
?>
bt 它不会重定向页面 detail.php 和 home.php