我如何使用标头标签重定向页面在PHP中

时间:2013-05-08 09:09:53

标签: php redirect

我想在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

1 个答案:

答案 0 :(得分:1)

尝试:

<?php
$i= $_POST['selectmode'];

if($i>1)
    {
        header("Location: detail.php");
        exit;

    }
else
    {
        header("Location : home.php");
        exit;

    }

此外,请确保在此页面上调用header()功能之前没有输出任何内容。