Jump to content

HELP needed - how to display user first name after log in?


eva9

Recommended Posts

Hi, wonder if anyone can help me with this. I wanted to have user information, ex. "Welcome, [firstname]" display after they log in, how do I do that? anyone can help?   ??? ???

 

Here's part of the Login scripts I used:

-------------------------------

<?php

$qry="SELECT member_id FROM members WHERE login='$login'

AND passwd='".md5($_POST['password'])."'";

$result=mysql_query($qry);

?>

-------------------------------

<?php

if(mysql_num_rows($result)>0) {

session_regenerate_id();

$member=mysql_fetch_assoc($result);

$_SESSION['SESS_MEMBER_ID']=$member['member_id'];

session_write_close();

header("location: member-index.php");

exit();

}

?>

--------------------------------

<?php

session_start();

if(!isset($_SESSION['SESS_MEMBER_ID']) ||

(trim($_SESSION['SESS_MEMBER_ID'])=='')) {

header("location: access-denied.php");

exit();

}

?>

--------------------------------

<?php

session_start();

unset($_SESSION['SESS_MEMBER_ID']);

?>

---------------------------------

 

 

 

Link to comment
Share on other sites

upate your script to fetch firstname of user also.

 

$qry="SELECT member_id,member_firstname FROM members WHERE login='$login

 

then

$_SESSION['SESS_First_NAME']=$member['member_firstname'];

 

and ahead you can use i suppose where ever you want to echo it you can

 

welcome. $_SESSION['SESS_First_NAME']

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.