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? Link to comment https://forums.phpfreaks.com/topic/9515-sessions-mysql-and-pop3/ 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] Link to comment https://forums.phpfreaks.com/topic/9515-sessions-mysql-and-pop3/#findComment-35114 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. Link to comment https://forums.phpfreaks.com/topic/9515-sessions-mysql-and-pop3/#findComment-35169 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.