brandon99999 Posted April 1, 2007 Share Posted April 1, 2007 I am trying to make a Pokemon RPG, http://www.thepokemonfrontier.com/, and I am having trouble with my login. The problem with it is that everytime a user loggs in it doesn't display the user's username. :-\ Is there a certain PHP echo code or something that need to go there? ??? Link to comment https://forums.phpfreaks.com/topic/45161-can-somebody-help-me-with-php-logging/ Share on other sites More sharing options...
ShoeLace1291 Posted April 1, 2007 Share Posted April 1, 2007 try this: $username = $_SESSION['username']; echo "$username"; Link to comment https://forums.phpfreaks.com/topic/45161-can-somebody-help-me-with-php-logging/#findComment-219212 Share on other sites More sharing options...
brandon99999 Posted April 1, 2007 Author Share Posted April 1, 2007 k, so I put it like this: <?php $username = $_SESSION['username']; echo "$username"; ?> Link to comment https://forums.phpfreaks.com/topic/45161-can-somebody-help-me-with-php-logging/#findComment-219220 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.