Re: Help with Debug Please.

2001-12-06 Thread Mo Holkar / UKG
At 23:14 06/12/01, you wrote: >Hey I got an error on a script and went to run it from the command line to >figure out what i forgot but to my surprise I got this: >(offline mode: enter name=value pairs on standard input) > >What the he$$ is it and how can I get by it to run my script from the >com

Re: Help with Debug Please.

2001-12-06 Thread Brett W. McCoy
On Thu, 6 Dec 2001, Andre` Niel Cameron wrote: > Hey I got an error on a script and went to run it from the command line to > figure out what i forgot but to my surprise I got this: > (offline mode: enter name=value pairs on standard input) > > What the he$$ is it and how can I get by it to run m

Help with Debug Please.

2001-12-06 Thread Andre` Niel Cameron
Hey I got an error on a script and went to run it from the command line to figure out what i forgot but to my surprise I got this: (offline mode: enter name=value pairs on standard input) What the he$$ is it and how can I get by it to run my script from the command line? Regards, Andre` C. Techn

Next 10 Results Help Needed

2001-12-06 Thread Darryl Schnell
I am working on a program that will read the password file and display a list of users that match the gid's 670 & 671 on an html page. I have that part worked out, however now I want to have the results display in groups of ten allowing the user to click on next results to see the next results.

Weekly list FAQ posting

2001-12-06 Thread casey
NAME beginners-faq - FAQ for the beginners-cgi mailing list 1 - Administriva 1.1 - I'm not subscribed - how do I subscribe? Send mail to <[EMAIL PROTECTED]> You can also specify your subscription email address by sending email to (assuming [EMAIL PROTECTED] is your email addr

Re: read textfield from using PERL

2001-12-06 Thread _brian_d_foy
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > prashan kukde menulis pada tgl 06 December 2001 Thursday 04:27 am sbb: > :: Hi, > :: I am trying to read data from the form's text field > :: using PERL script. Following is the perl code I am > :: using, > :: $cgiobject = new CGI; >

Re: variables using blank spaces

2001-12-06 Thread Randal L. Schwartz
> "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: Brett> Duh... escaping isn't what you need, since you're probably Brett> doing this as a post. You should put your variable in quotes Brett> (which is what you should be doing anyway): Brett> But that'll fail if $var contains quotes o

Re: encrypt Pass

2001-12-06 Thread Rob
This is what I use. sub CryptPW { my($passWord) = $_[0]; my($salt) = join '', ('.', '/', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64]; my($crypted) = crypt($passWord, $salt); return $crypted; } Rob Good judgement comes from experience, and experience - well, that comes from poor judgement.

RE: encrypt Pass

2001-12-06 Thread Wagner Garcia Campagner
Hi Christo, you can use MD5 or Sha-1 read the documentation on the topic: Digest Thanks, Wagner. -Original Message- From: Christo Rademeyer [mailto:[EMAIL PROTECTED]] Sent: quinta-feira, 6 de dezembro de 2001 13:04 To: [EMAIL PROTECTED] Subject: encrypt Pass Hi how must I go to encry

encrypt Pass

2001-12-06 Thread Christo Rademeyer
Hi how must I go to encrypt my passwd on my adduser I wrote? Thanx Christo PS! is it make salt or something like that ?

Re: read textfield from using PERL

2001-12-06 Thread Djoko Priyono
prashan kukde menulis pada tgl 06 December 2001 Thursday 04:27 am sbb: :: Hi, :: I am trying to read data from the form's text field :: using PERL script. Following is the perl code I am :: using, :: #!/usr/local/bin/perl :: :: use CGI; :: :: $cgiobject = new CGI; :: $userphone=$cgiobject->param