我只想知道如何爲登錄過程添加和設置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
什麼是'connection.php'?一個假設它訪問數據庫,爲什麼不使用該功能? –
只是做另一個'else if' – twain
...並對括號進行分類。 –