diablo12 Posted June 10, 2004 Share Posted June 10, 2004 Greetings, I have a fairly simple login system going on..user signs up for account, if its taken it tells them to choose new login name, if its not taken it creates the account. What i'd like to know is how to I create so when the user logs into the system (Using user name & password), i want to display there FULL Name (Such as how Amazon does). What would I need to use? I'd appreciate any help. Im using Dreamweaver MX - I have a little bit of PHP knowledge - and not too much MYSQL knowledge..just a little bit. Regards, Kevin Link to comment https://forums.phpfreaks.com/topic/1862-help-with-user-login/ Share on other sites More sharing options...
morpheus.100 Posted June 17, 2004 Share Posted June 17, 2004 <?php echo "Welcome ". $_SESSION['username'] "; ?> Where the session is specified as username this denotes the form field from the information you wish to display. Link to comment https://forums.phpfreaks.com/topic/1862-help-with-user-login/#findComment-6107 Share on other sites More sharing options...
cSidler.NET Posted June 18, 2004 Share Posted June 18, 2004 <?php echo "Welcome ". $_SESSION['username'] "; ?> Where the session is specified as username this denotes the form field from the information you wish to display. ahh yes but we have to make sure that the session originally starts his login system might just lead them to a normal page, not a page that checks to see if they are logged in! Link to comment https://forums.phpfreaks.com/topic/1862-help-with-user-login/#findComment-6109 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.