Hi does anyone know how to remove the login box from the page once the user has logged in?
i have the <?php
$curdir = getcwd ();
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
chdir ($curdir);
?>
at the very top of the page, html code underneath and then the <?php
require_once('/path/to/your/login_inc.php');
?>
below that.
When i use conditionals to display content to users who are logged in it works fine but the login box still remains at the top, is this suppose to happen?
Sorry i'm new to all this.
|