PHP登录页面重定向

时间:2013-11-05 05:02:35

标签: php login href

此代码不完整,我需要将其重定向到名为mainpage.php的页面,其中包含用户名和密码的硬编码信息。这是代码。

<?php
session_start();
$username="user";
$password="123";

if($_POST['username'] == $username && $_POST['password'] == $password)
?>

<html>
    <head>
    </head>
    <body>
        <div style='text-align:center'>
        <h3>Welcome To Kontak</h3>
        </div>
        <hr /><br />
        <form id='login' action="" method='post' accept-charset='UTF-8'>
            <fieldset style="width:550px">
            <legend>Admin Login</legend>
            <input type='hidden' name='submitted' id='submitted' value='1'/>

            <label for='username' >UserName:</label>
            <input type='text' name='username' id='username'  maxlength="50" />


            <label for='password' >Password:</label>
            <input type='password' name='password' id='password' maxlength="50" />

            <input type='submit' name='submit' value='Submit' />
            </fieldset>
        </form>
    </body>
</html>

3 个答案:

答案 0 :(得分:5)

我认为你正在寻找这个:

if($_POST['username'] == $username && $_POST['password'] == $password)

header( 'Location: mainpage.php' );
?>

所以如果条件满足,标题将转到mainpage.php。 --Vijay

答案 1 :(得分:1)

必须开始和结束if块

<?php
session_start();
$username="user";
$password="123";

if(isset($_POST['username']) && $_POST['username'] == $username && $_POST['password'] == $password)
{
    header("Location: your_page.php");
}
else
{
?>

<html>
    <head>
    </head>
    <body>
        <div style='text-align:center'>
        <h3>Welcome To Kontak</h3>
        </div>
        <hr /><br />
        <form id='login' action="" method='post' accept-charset='UTF-8'>
            <fieldset style="width:550px">
            <legend>Admin Login</legend>
            <input type='hidden' name='submitted' id='submitted' value='1'/>

            <label for='username' >UserName:</label>
            <input type='text' name='username' id='username'  maxlength="50" />


            <label for='password' >Password:</label>
            <input type='password' name='password' id='password' maxlength="50" />

            <input type='submit' name='submit' value='Submit' />
            </fieldset>
        </form>
    </body>
</html>
<?php
}
?>

答案 2 :(得分:0)

更改'标题(“位置:your_page.php”);'到'header(“Location:mainpage.php”);'