无法将变量从一个php文件传递到另一个php文件

时间:2018-03-09 22:19:03

标签: php

我有一个简单的登录页面,其想法是如果用户输入错误的passowrd / login,那么他或她将在同一页面上看到错误消息。我有3个不同文件的代码 - 一个是简单的html,另一个是函数,最后一个运行所有逻辑:

<div id="content">
<div class="logo-container"><img src="images/logo2.png" alt=""></div>
<div class="container-fluid">
    <!-- All login logic is in login.php file -->
    <form action='/login-logic.php' method="post" class="form-1">
        <p>
            <label for="username" class="sr-only">Username</label>
            <input type="text" class="form-control" id="username" 
                name="username" placeholder="What's your username?" required />
        </p>
        <p>
            <label for="password" class="sr-only">Password</label>
            <input type="password" class="form-control" id="password" 
                name="password" placeholder="What's your password?" required/>

            <?php 

                if($isValid === false) {
                    echo "<div id='alert-message' class='alert alert-danger'>SCRUB</div>";                        
                }

            ?>

        </p>
        <p class="submit">
            <button id="submit-button" type="submit" name="submit" value="submit"><i class="fa fa-arrow-right"></i></button>
        </p>
    </form>
</div>

// Check match of the credentials in database
function loginValidation($query) {
    global $isValid;
    $isValid = true;
    $count = mysqli_num_rows($query);
    if($count == 1) {

       header('Location: pages/signup.php'); /* Redirect browser */
    } else {
       $isValid = false;
       header('Location: index.php');
       /* Redirect browser */
    }   

}

谢谢!

1 个答案:

答案 0 :(得分:0)

您之前声明一个变量,强制浏览器重新加载页面。因此,在下一个请求中不再定义变量。

这是一种可能的方式。

而不是:

  SBT_OPTS: "-Xmx2G -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -Xss2M -Duser.timezone=GMT"
  JAVA_OPTS: "-Xmx2G -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -Xss2M -Duser.timezone=GMT"

做:

{
   $isValid = false;
   header('Location: index.php');
   /* Redirect browser */
}   

然后,在HTML中:

{
   /* Redirect browser */
   header('Location: index.php?error');
   exit();
}