Hi, thanks for the reply...
Like I said I'm using Dreamweaver for the log in script, mainly because I'm not competant enough with PHP to write my own as of yet.
That script seems to be setting the session variables
Code:
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
session_register("MM_Username");
session_register("MM_UserGroup");
I have tried your suggestion of
Code:
<?php if (isset($_SESSION['MM_Username'])) { ?>
form code here
<?php } ?>
And it does a wonderful job of hiding it, yet it does not seem to be working even when I am logged in.
I tried to simply echo the session variable MM_Username but it won't even do that, so I'm assuming there is something wrong with my variable declaration or the actual registering of the variable.