0

您好,我可能发布了关于这个问题的第四个问题,但到目前为止没有人可以帮助我,所以让我们从头开始,我需要的很简单,我需要:将 userID 变量从名为“users”的表中的列名“userID”设置为会话数组:$_SESSION['userID']

这是我的登录页面代码:

<?php 
session_start();
include_once("config.php"); //include the settings/configuration
?>
<?php if( !(isset( $_POST['login'] ) ) ) { ?>
    <?php 
    //else look at the database and see if he entered the correct details
    } else {

session_start();
$usr = new Users;
$usr->storeFormValues( $_POST );
if( $usr->userLogin() ) {
header( 'Location: cursos.php' ) ;
$_SESSION["loggedIn"] = true;
$_SESSION['username'] = $_POST['username'];
$_SESSION['password'] = $_POST['password'];

这是我的用户类,它操作登录功能:

public function userLogin() {
$success = false;
try{
$con = new PDO( DB_DSN, DB_USERNAME, DB_PASSWORD );
$con->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$sql = "SELECT * FROM users WHERE username = :username AND password = :password LIMIT 1";
$stmt = $con->prepare( $sql );
$stmt->bindValue( "username", $this->username, PDO::PARAM_STR );
$stmt->bindValue( "password", hash("sha256", $this->password . $this->salt), PDO::PARAM_STR );
$stmt->execute();  


$result = $sth->fetch(PDO::FETCH_ASSOC);

$success = true;
if ($result!==false) { // Check there is a match
    $_SESSION['userID']= $result['userID'];
}


$success = true;

$con = null;
return $success;
}catch (PDOException $e) {
echo $e->getMessage();
return $success;

代码工作正常我只想添加它,它将在用户登录后从数据库中用户表的列中获取用户 ID 值并将其存储到 $_SESSION['userID'] 中。

那么知道如何在我的代码中实现这个目标吗?谢谢!

4

1 回答 1

0

如果您只想从表中获取 UserID,您将不得不先$stmt->fetch()加载它,然后您可以将它存储在您的 SESSION 中。

所以在function userLogin()do中执行之后:

$result = $stmt->fetch(PDO::FETCH_ASSOC);

如果找到用户,$result则将包含用户表中的所有字段。所以:

if ($result!==false) { // Check there is a match
    $_SESSION['userID']= $result['userID'];
}
于 2013-10-02T18:44:33.913 回答