Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKonrad Pilch
2,435 PointsPHP SESSION
Hi,
How do Session in PHP works? So i did a login system and how can i display the user attributes like id, name etc..? Do i have to store it in the session class?
How do session work in general?
1 Answer
rhysadams
4,847 PointsRead here http://www.w3schools.com/php/php_sessions.asp. This is a great place to start. But here is the basics in short.
Once the user has successfully logged in you call a built-in function "session_start();". Next you set the variable you want to store like so: $_SESSION["username"] = "username";
Now when you want to display the session variable you call it like so: echo $_SESSION["username"];
Hope this helps