Log in

View Full Version : Looking for my username command


sgtryan
08-20-2005, 10:26 PM
Say I wanted to create a page that all it said was the user's username.

What would this code be? I am just learning, bare with me

jugo
08-21-2005, 01:33 AM
1st it needs to be a php file.

The on the top of the file include this:


chdir('forums/');
require_once('global.php');



Then wherever youw ant to display the username:


echo $bbuserinfo['username'];

sgtryan
08-24-2005, 08:27 PM
thanks!