quasiman Posted May 10, 2006 Share Posted May 10, 2006 I have a php/mysql login system in use, and I'd like to add a simple pop3 client for my users. So when an account is created through the current scripts, they're also given a pop3 account (Curl to Cpanel via doaddpop), then able to read email while logged in.My problem is that a users login session is set with their username, and when going to check email they need to use the full email address as a login.How can I append the domain name to the users session without killing it? Quote Link to comment Share on other sites More sharing options...
trq Posted May 11, 2006 Share Posted May 11, 2006 Maybe you need to be more specific?[code]$useremail = $_SESSION['username']."@domain.com";[/code] Quote Link to comment Share on other sites More sharing options...
quasiman Posted May 11, 2006 Author Share Posted May 11, 2006 yeah, that's what I've been trying but it's not passing the logged in status between the two....there's probably one little line where I accidently named the session incorrectly.Thanks for the suggestion. 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.