Re :Camel Book

2002-03-20 Thread Sunish Kapoor
Hi Teddy, Want an HTML version of Programming Perl Second version (Free) . Sunish ;-) - Original Message - From: "Michael Kelly" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 21, 2002 12:39 AM Subject: Re: Camel Book > On 3/20/02 4:29 AM, Octavian Rasnita <[EM

Re: existing username

2002-03-20 Thread Teresa Raymond
use CGI; my $q = new CGI; my $formfield1=$q->param('username') my $formfield2=$q->param('password') #INITIALIZE HASH OF FORM VARIABLES my %params = $q->Vars; open (FILE, "$filename") || die "No such file\n"; my @data=; close (FILE); foreach my $i (@data) {chomp($i); my ($username,$password)

Re: Camel Book

2002-03-20 Thread Michael Kelly
On 3/20/02 4:29 AM, Octavian Rasnita <[EMAIL PROTECTED]> wrote: > Hi all, > > I heard about that famous Camel Book for Perl but I don't know its real > name. > Please tell me if you know. > Thank you. > Teddy, "Programming Perl", by Larry Wall, Tom Christiansen, and Jon Orwant. http://www.orei

RE: Mail::POP3Client

2002-03-20 Thread Scot Robnett
If you are on Windows, use PPM to install the modules. C:\> ppm PPM interactive shell (2.1.5) - type 'help' for available commands. PPM> install Mail::POP3Client If you are on *NIX, you can either download the .tar.gz file(s) off CPAN and make/make install th

Mail::POP3Client

2002-03-20 Thread Octavian Rasnita
Hi all, I try to make a script for downloading the messages from a POP3 server. I tried to use Mail::POP3Client but I've noticed that I don't have it installed. I don't have Mail::Folder either. Do you know where can I download this modules? Thank you. Teddy, My dear email address is [EMAIL PR

Client-Side Exec Of Perl

2002-03-20 Thread Hewlett Pickens
Ignoring security issues, is there a way to have a CGI-generated form invoke a Perl script on the Client? The Client requested data from the server and a CGI script there created the data and sent it back on a form. Would like to invoke a Perl Script to create a graph from the supplied data. I

DBI w/ DBD:ODBC vs DBI w/ DBD:mysql

2002-03-20 Thread Bob T
I am new to Perl DBI programming But it is fairly simple.. I am using both Mysql 3.23.44nt and 3.23.43 Linux..as well as PostgreSQL 7.1 Linux and on WinXP on Cygwin. Perl on Linux was straight forward but the Perl on WIn is a bit Different. I ran a simple script to insert records in a table as te

existing username

2002-03-20 Thread Matthew Harrison
how can i make a script check whether a variable equals an existing system username or not? the script does not run as root, it is a webpage. -- Matthew Harrison Internet/Network Services Administrator Peanut-Butter Cheesecake Hosting Services Genstate www.peanutbuttercheesecake.co.uk -- To un

Re: Camel Book

2002-03-20 Thread Brett W. McCoy
On Wed, 20 Mar 2002, Octavian Rasnita wrote: > I heard about that famous Camel Book for Perl but I don't know its real > name. The full name is _Programming Perl_, by Larry Wall, et al. It's an O'Reilly book and can be found in any bookstore that has a computer section. -- Brett

RE: Camel Book

2002-03-20 Thread Camilo Gonzalez
The one you seek is called "Programming Perl" and is indeed an O'Reilly book. However, if you're new to programming you may want to consider first reading "Learning Perl" which has a gentler learning curve. -Original Message- From: matt stewart [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: Camel Book

2002-03-20 Thread matt stewart
i'd imagine it'll be an o'reilly book - all their books have some kind of animal on the front. -Original Message- From: Octavian Rasnita [mailto:[EMAIL PROTECTED]] Sent: 20 March 2002 12:29 To: [EMAIL PROTECTED] Subject: Camel Book Hi all, I heard about that famous Camel Book for Perl

Camel Book

2002-03-20 Thread Octavian Rasnita
Hi all, I heard about that famous Camel Book for Perl but I don't know its real name. Please tell me if you know. Thank you. Teddy, My dear email address is [EMAIL PROTECTED] _ Do You Yahoo!? Get your free @yahoo.com address at http://

Re: Anyone? script was working now doesn't

2002-03-20 Thread Eric Peers
Teresa, Is there more code in your script? I can see that when submitting your form that the error condition below is running instead of some sort of cgi processing. Might be helpful to see what is happening before or after this section of the script. Eric > From: Teresa Raymond <[EMAIL PR