Re: question about uninitialized variable

2003-03-07 Thread Wiggins d'Anconia
Hughes, Andrew wrote: As a relative newbie myself, it appears that you have in essence applied a variable to a variable. I typically use the format my $name=param("name"); when I have a form that has a field called name. This form field value (andrew for example) would be stored in param("name

RE: question about uninitialized variable

2003-03-07 Thread Hughes, Andrew
As a relative newbie myself, it appears that you have in essence applied a variable to a variable. I typically use the format my $name=param("name"); when I have a form that has a field called name. This form field value (andrew for example) would be stored in param("name") which is then stored

RE: Help with File::Find

2003-03-07 Thread Kipp, James
Please ignore this post. This was meant for the perl-beginners list. My apologies. -- > -Original Message- > From: Kipp, James > Sent: Friday, March 07, 2003 1:57 PM > To: [EMAIL PROTECTED] > Subject: Help with File::Find > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Help with File::Find

2003-03-07 Thread Kipp, James
Hi Is there a way to get File::Find to TOTALLY ignore a directory?? See comments in code for what I mean: find ( \&wanted, 'f:/users/user1'); sub wanted { ## HERE: even though it returns when it sees a dir called # with Profile, it comes right back to where it left of, in other

question about uninitialized variable

2003-03-07 Thread Tony Bandy
Hello everyone, Fairly new to the list here (and perl), so if this is an inappropriate post, please forgive me. I've got the Learning Perl book plus a few others...but I'm still scratching my head over this one. Just a beginning test page where the end-user submits a name and gets a page back wit

RE: Getting a STDOUT value

2003-03-07 Thread Scot Robnett
Wow! Quite a detailed response...thank you. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 9:25 AM To: Scot Robnett Cc: [EMAIL PROTECTED] Subject: RE: Getting a STDOUT value Remember to include the list in your replies, so that everyone

RE: Getting a STDOUT value

2003-03-07 Thread wiggins
Remember to include the list in your replies, so that everyone can help and be helped. On Fri, 7 Mar 2003 08:52:04 -0600, "Scot Robnett" <[EMAIL PROTECTED]> wrote: > Thanks - but I don't understand how that redirect works. I've read about > open, s

multipart form problem

2003-03-07 Thread Li Ngok Lam
Hi all, I am totally new about CGI and Perl, and now, I've facing my first problem so hope somebody can help... I have this html code : and I have this Perl code : #!C:/Perl/bin/perl.exe print "Content-type: text/html\n\n"; print "OK"; my problem sounds strange ... when I am uploading a

Testing.....

2003-03-07 Thread Li Ngok Lam

Re: my( $string )

2003-03-07 Thread Bob X
"David Gilden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Quick question: > my( $string ) = "you ordered " . $q->param('quantity') . " foobars\n"; > > > What with the '( )' do I need them every time I declare a variable? > You can declare them like this: my $foo; my $bar; Or