Jump to content

Display firstname after login


adi123

Recommended Posts

I have a login script which displays the username after login. I am trying to display the firstname but the firstname is in a different table.

 

The two tables are login and customer info, the login table containing the id, username and pass. The customer info table contains all of the customers personal info with the same id as login.

 

 

function verify_Username_and_Pass($un, $pwd) {

 

$query = "SELECT firstname

FROM login, customer_info

WHERE username = ? AND pwd = ? AND login.id = customer_info.id

LIMIT 1";

 

if($stmt = $this->conn->prepare($query)) {

$stmt->bind_param('ss', $un, $pwd);

$stmt->execute();

 

if($stmt->fetch()) {

$stmt->close();

 

return true;

}

}

 

}

 

 

 

function validate_user($un, $pwd) {

$mysql = New Mysqlcon();

$ensure_credentials = $mysql->verify_Username_and_Pass($un, md5($pwd));

 

if($ensure_credentials) {

$_SESSION['status'] = 'authorized';

$_SESSION['username'] = ucfirst($un);

 

header("location: myprofile.php");

} else return "Please enter a correct username and password";

 

}

 

<p>Hello <? echo $_SESSION['firstname']; ?> (<?php echo $_SESSION['username']; ?>) </p>

 

firstname does not show

Link to comment
https://forums.phpfreaks.com/topic/235390-display-firstname-after-login/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.