Gossamer Forum
Quote Reply
user.cgi
alex.. i just noticed that you added the Username cookie that i told you about..

something you might want to do however is after

Code:
my $user_r = $db->get_record ($user, 'HASH');

add

Code:
$user = $user_r->{'Username'};

that way if someone logged on with all lowercase and they formatted their name with an uppercase somewhere.. it will be formatted the way they want..

idunno.. it's just a little thing..

jerry
Quote Reply
Re: user.cgi In reply to
Thanks!

Alex