Search found 2 matches
- Sun Oct 04, 2009 2:00 pm
- Forum: Advanced Help and Support
- Topic: Keeping a user logged in
- Replies: 3
- Views: 1731
Re: Keeping a user logged in
sorry for double posting but i figured it out!! session_start(); $user = $_SESSION['name']; include 'connect.php'; $playerinfo="SELECT id,name,resource1,resource2,resource3 from players where name='$user'"; $playerinfo2=mysql_query($playerinfo) or die("could not get player stats!"...
- Sun Oct 04, 2009 5:04 am
- Forum: Advanced Help and Support
- Topic: Keeping a user logged in
- Replies: 3
- Views: 1731
Keeping a user logged in
hello! i must say i find your tutorials very useful and what helped me out a lot was to read a php book before hand. Much like any language you need to practice before you can get the hang of it so thank you for your videos. now to my request I'm having a difficult time keeping my user logged in i w...