Guest-Teh:
> Is there anyway to say at the top
> of the page display the name they
> are logged in under? like :
> Logged In As "Teh~"
Hi. Yes, you can do it! Just add this to the webpage, in the place you want to display it:
Code:
<?php echo "Logged in as $slogin_Username"; ?>
So, for example, if you have a header file (like header.inc.php) you could add it there too. For example:
Code:
<html>
<head>
<title><?php echo $slogin_pagetitle;?></title>
</head>
<body>
<p><?php echo "Welcome $slogin_Username"; ?></p>
And then all pages would display the "Welcome xxxxx" message.
Regards,
Mario A. Valdez-Ramirez.