Re: Where are the archives?

2001-10-04 Thread jeffl
http://archive.develooper.com/beginners%40perl.org/ you know it took me awhile to find them as well. jeffl On 2001.10.04 11:27 "Mason, Andrew" wrote: > Where are the archives? > > Sorry to ask such a dumb question but I don't know and it might save me > posti

Re: encrypt, decrypt module suggestions

2001-10-03 Thread jeffl
Rex, Elaine thanks. I read you're suggestion Elaine, informative, thanks. Rex, thanks I think I'll try the Crypt::RC4 module. jeffl On 2001.10.03 20:49 Rex Arul wrote: > Use Crypt::RC4 module, to encrypt and decrypt values. It uses the RC4 > Symmetric encryption which is f

Re: Date comparing and difference?

2001-09-26 Thread Jeffl
John, Try Date::Simple very simple interface for calculations between two dates. use Date::Simple ('date', 'today'); # Difference in days between two dates: $diff = date('2001-08-27') - date('1977-10-05'); Jeffl On 2001.09.26 12:5

Re: URL redirect and row-count

2001-09-07 Thread Jeffl
column) FROM some_table WHERE some_clause; The above statements will return a # Hope that helps jeffl does anyone else ever find themself using esc shit : wq! for just about everything? Sorry, I've been ear deep in code all day long.. On 2001.09.07 17:29 Imtiaz ahmad wrote: > Hi-

RE: foreach and the ordering of array's

2001-09-07 Thread Jeffl
to check...my bad. I was just having a brain fart. thanks for you're comments, Jeffl EOF On 2001.09.07 12:23 Bob Showalter wrote: > > -Original Message- > > From: Jeffl [mailto:[EMAIL PROTECTED]] > > Sent: Friday, September 07, 2001 11:47 AM > > To: Bob Sh

RE: foreach and the ordering of array's

2001-09-07 Thread Jeffl
trees, and I should have just run a test to find out for myself.I'm off to go build an @ and find out the order it parses through in a foreach, which I should have done in the first place..doh.It was late..cut me some slack. jeffl On 2001.09.07 10:18 Bob Showalter wrote: >

Re: cgi not writing to flat file

2001-08-28 Thread Jeffl
I'm in the middle of coding myself so I'll be brief, help you get some direction. First, I wouldn't set you're permissions to 777, BUT that all depends on what the user is that would be writing to the file. What I mean is, the web server is the one that is going to be writing to the file so, and

Re: Check to see if process exists

2001-08-21 Thread Jeffl
Hey Hans, Go check out a program written by Evan Borgstrom, it is a program written in perl that will check to see if a program is up, and email you the status.. It runs as a cron job. Also you can add additional services quite easily. Author: Evan Borgstrom Email : syntec at unixpimps.org WWW

Re: Graphs in perl ....

2001-08-08 Thread jeffl
Try the GD module, its a Stein!!! jeff On Wed, 8 Aug 2001, Elie De Brauwer wrote: > Date: Wed, 8 Aug 2001 20:16:07 +0200 > From: Elie De Brauwer <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Graphs in perl > > I'm looking for a modules that can create graphs, i want a

Re: adding an element to an array in a hash of arrays...

2001-08-01 Thread jeffl
push @{ $HoA{key} }, "new value", "some other value"; On Thu, 2 Aug 2001, Jim Conner wrote: > Date: Thu, 02 Aug 2001 01:21:38 -0400 > From: Jim Conner <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: adding an element to an array in a hash of arrays... > > How can I do this? :) > > > >

General module question, can't get anything imported.

2001-08-01 Thread jeffl
o_var); our $VERSION = 1.00; $foo_var = "foo_value"; 1; # below is the script --- !/usr/bin/perl use Foo; print "$foo_var\n"; exit; below is the output #----