我在表 1 中有用户名,在表 2 中有密码。登录的语法是什么?
如果我有两个表,如何创建登录功能:
TABLE1 NAME: accounts | COLUMN: acc_id, password, mem_id
TABLE2 NAME: members | COLUMN: mem_id, firstname
我想将“名字”设为 $username 并将“密码”设为 $password。我这里有代码,但我无法继续,因为我不知道它是否正确。
$sqlacc="SELECT * FROM members INNER JOIN accounts ON
account.acc_id=members.mem_id WHERE members.firstname='$username' and accounts.password='$password'";
$resultacc = mysql_query($sqlacc);
$countacc = mysql_num_rows($resultacc);
$rowacc = mysql_fetch_array($resultacc, MYSQL_NUM);
if($countacc==1){
$_SESSION['idontknow']=$rowacc[0];
$_SESSION['idontknow']=$rowacc[1];
header("location:content/index.php");
}