Hi, We are getting username after user logs in, username.php (is on local server where aMember is installed) $username = Am_Lite::getInstance()->getUsername(); username is displayed fine on local server, but when we read username from remote server, username is empty remote.php (is on remote server) $page = file_get_contents('http://mydomain.com/username.php'); echo($page); Does aMember allow reading Am_Lite details from remote server? Is there option to add IP address to allow it? Thanks, Nurbek
No as a variable. Thinking you could use session variables such as: PHP: <?phpsession_start(); // first line of script$_SESSION['username']= Am_Lite::getInstance()->getUsername();........ Then in your script get the usename from PHP: session_start(); // first line of script$username=$_SESSION['username']