Gossamer Forum
Home : Products : DBMan : Customization :

Get Email Address Listing

Quote Reply
Get Email Address Listing
I am using the Secure Password Lookup and the and the Private Mailer mod.

I am wondering if there is a way to set up a link for the admin only that would "show" the email addresses when performing a search on a specific field ('Year Graduated') in the DB?
Quote Reply
Re: Get Email Address Listing In reply to
Sure.

Just add the following to your display routine:

Code:
if ($per_admin) {
print qq|
<TR><TD>Email:</TD>
<TD><a href="$rec{$db_email_field}">$rec{$db_email_field}</a></TD></TR>
|;
}


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





Quote Reply
Re: Get Email Address Listing In reply to
Thanks again JPD - I can only hope to grow up one of these days to be as smart as you in CGI scripting. :-)

It works great !

--------------
donm