in reply to Re: Drop Down Selection #2
in thread Drop Down Selection #2
But the part that has me stiffled, is this:print $query->popup_menu(-name=>'userid', -values=>\@users);
Thank you so much# open the text database unless(open(PFD,$db)) { &printError("Could not open user database"); exit(1); } # first check if user exist $path=''; while (<PFD>) { chomp; ($u,$p,$path)=split('\|',$_);###$u loop?? how? if ($userid eq $u) { $rc=1; last; } } close(PFD);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Drop Down Selection #2
by suaveant (Parson) on May 09, 2001 at 06:25 UTC | |
by tilly (Archbishop) on May 09, 2001 at 11:39 UTC | |
by koacamper (Acolyte) on May 09, 2001 at 06:35 UTC |