2014-12-25 58 views
0

我只想知道如何爲登錄過程添加和設置2個不同的用戶名和管理員。所示步驟後我不知道如何編寫代碼。登錄過程超過1個用戶ID

<?php 
 
include ("connection.php") 
 
$username = $_GET ['username'] 
 
$password = $_GET ['password'] 
 

 
if (empty ($username)) || (empty ($password))) 
 
{ 
 
die ("Fill the empty field"); 
 
} 
 

 
else if (($username=="aqilah")) && (($password=="aqilah")) 
 
//how to add another different username and password here

+1

什麼是'connection.php'?一個假設它訪問數據庫,爲什麼不使用該功能? –

+0

只是做另一個'else if' – twain

+0

...並對括號進行分類。 –

回答

2

你可以做這樣的事情:

<?php 
include ("connection.php"); 

$users = array(
    'foo' => 'bar', 
    'bar' => 'foobar', 
    'merry' => 'xmas', 
); 

if (empty($username) || empty ($password)) { 
    die ("Fill the empty field"); 
}elseif(isset($users[$username]) && $users[$username] == $password) { 
    // success 
} 
+0

你需要整理括號 –

+0

好的謝謝..我現在明白了 – Thanuja

+0

Humf是仍然享受我的第一杯咖啡整理出來 – DarkBee