2016-05-25 122 views
0

我遇到了我的代碼問題。這是我按照教程製作的登錄/註冊腳本。session_start()導致問題

我遇到的問題是,只有當用戶輸入正確的登錄信息時,我才希望腳本回顯「登錄」,但即使沒有輸入任何登錄信息,它仍然會回顯「登錄」。我檢查了它,如果我刪除了「session_start()」函數,它不會做同樣的事情,但是當我想要登錄時,它仍然無法訪問會話。

這是的init.php文件,用於啓動與數據庫的連接,並定義了一些其他功能:

<?php 
session_start(); 
require 'database/connect.php'; 
require 'functions/general.php'; 
require 'functions/users.php'; 

$errors = array(); 
?> 

這是connect.php文件,用來連接到數據庫:

<?php 
$connect_error = 'Sorry, we are experiencing connection issues. This will be solved as soon as possible.'; 
$con=mysqli_connect("localhost","root","","lr") or die ($connect_error); 

mysqli_select_db($con,'lr') or die($connect_error); 



mysqli_close($con); 

?> 

general.php文件對於這個問題並不重要。 這是users.php文件,我保留其他一些功能。

function user_id_from_username ($username){ 
$username = sanitise($username); 
$mysqli = new mysqli("localhost", "root", "", "lr"); 
$query = "SELECT * FROM users"; 
$result = $mysqli->query($query); 
while($row=$result->fetch_row()){ 
    if ($row[1]==$username){ //username == $username 
     return $row[0];//user_id; 
    } 
} 
} 



function login ($username, $password){ 
    $user_id= user_id_from_username($username); 
    $mysqli = new mysqli("localhost", "root", "", "lr"); 
    $username = sanitise($username); 
    $password =md5 ($password); 

    $query = "SELECT * FROM users"; 

    $result = $mysqli -> query($query); 

    while ($row =$result -> fetch_row()){ 
     if($row[1]==$username && $row[2]==$password){ 
      return TRUE; 
     }else { 
      return FALSE; 
     } 

    } 

} 

這是調用登錄功能,上面介紹的文件:

<?php 
include 'core/init.php'; 




if (empty($_POST) === false) { 

$username = $_POST['username']; 
$password = $_POST['password']; 

if (empty($username) ===TRUE || empty ($password) === TRUE) { 
    $errors[]='You need to enter a username and password!'; 
} else if (user_exists($username) ===FALSE) { 
$errors[]="We can't find that username, have you registered?"; 
} else if (user_active($username)===FALSE){ 
$errors[]="You have not activated your account!"; 
} else{ 
$login = login($username, $password); 
session_start(); 
if ($login ==false) { 
    $errors[] ='That username/password combination is incorrect!'; 
}else if ($login==true) { 
    //set the user session 
    $_SESSION['username'] = $login; 

    //redirect user to homepage 
    header('Location: index.php'); 
    exit(); 
} 

} 


if ($errors){ 
print_r($errors); 
} 

} 
?> 

而且現在的index.php文件,其中我有神偷「登錄」即使if語句我沒有登錄?

<?php 

if (empty($_SESSION['username'])) { 
    echo 'not logged_in'; 

}else { 
    echo 'logged in'; 

} 

>

現在我認爲這個問題是位於某處eithe r在users.php,login.php或index.php文件中。我提交了所有文件,以便了解我正在努力實現的目標。這段代碼遍佈在如此多的文件中,因爲我已經包含了函數和接口,並且我希望能夠重用代碼,所以我使用includes。

對於你得到一個更好的主意,如果我的文件沒有幫助你的是,我將離開本教程的Youtube鏈接我下面: https://www.youtube.com/watch?v=JUk2e8oqOvI&list=PLE134D877783367C7&index=7#t=6.296979

謝謝

等待你答案,

最好的問候,

+2

請確保在您的每個頁面中啓動會話,並使用會話。 –

+0

您必須在使用$ _SESSION的每個頁面上使用session_start(),在文件開始處放置session_start() –

回答

0

如果你不使用$_GET請求包含的網頁,你需要把session_start()對每個文件wher的頂部e您正在使用$_SESSION變量,否則您無法使用會話。

<?php 
session_start(); 
// Rest of your script 

我希望這會幫助你。