Gossamer Forum
Home : Products : DBMan : Customization :

Re: first Time users

Quote Reply
Re: first Time users In reply to
Thanks for the link but I need to know what to put where it says [enter the formatting for the top of your pages here] and [enter the formatting for the bottom of your pages here] .

sub html_verify_accounts { open (PASSWD, "<$auth_pw_file") or &cgierr("unable to open password file. Reason: $!\n"); @passwds = <PASSWD>; close PASSWD; foreach $pass (@passwords) { @data = split ":",$pass; undef %rec; %rec = &get_record($data[0]); if (!%rec) { push (@list,$data[0]); } } [enter the formatting for the top of your pages here] if (!@list) { print "All users have records in the database"; } else { print "The following users do not have records in the database:<BR>"; foreach $user (@list) { print "$user<BR>"; } } [enter the formatting for the bottom of your pages here]

------------------
Sherwin Sales@jse.net
Subject Author Views Date
Thread first Time users Sherwin 1951 Sep 13, 1999, 7:40 AM
Post Re: first Time users
ER 1833 Sep 13, 1999, 10:59 AM
Post Re: first Time users
Sherwin 1829 Sep 13, 1999, 11:57 PM
Post Re: first Time users
ER 1838 Sep 14, 1999, 11:51 AM
Post Re: first Time users
Sherwin 1847 Sep 15, 1999, 7:41 AM
Post Re: first Time users
Sherwin 1835 Sep 16, 1999, 9:13 PM
Post Re: first Time users
Eliot 1850 Sep 16, 1999, 9:23 PM