Hmm...

January 30, 2004 by Kutt Niinepuu
As I'm not using 2004 myself, I could beat about the bushes. But generally - 'mm_username' if probably a variable name from an array, which holds all the login variables, so you cannot access it directly, ie "if (isset('mm_username'))", instead find the array and use it like this "if (isset($Array['mm_username']))". And probably the "isset()" is not the best way, because usually the "username" is not set or unset but something like "logged_in". So the logic here would be that: if($Array['logged_in']==1) then ... Ok, maybe someone who is using this MX2004 will help you out in proper.