Gossamer Forum
Quote Reply
Guest
when someone login as GUEST (which is created by the admin) and the GUEST can only view part of the info....isit possible?

eg , GUEST cannot view Phone Number, $rec{'PhoneNo'}" .

how do i mod it??
Quote Reply
Re: Guest In reply to
You would use

Code:
|;
unless ($db_userid eq "guest") {
print qq|your fields|;
}
print qq|

------------------
JPD