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 Quote Link to comment 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. Quote Link to comment 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! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.