Re: automatically submitting web forms.

2005-10-11 Thread Adriano Ferreira
On 10/11/05, Dan Klose <[EMAIL PROTECTED]> wrote: > I would like to be able to automagically submit a form to a server. Take a look at WWW::Mechanize http://search.cpan.org/dist/WWW-Mechanize/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: HOA idiocy.

2005-10-10 Thread Adriano Ferreira
Everywhere you wrote > "aliphatic" => qw[I L V], it should be something like > "aliphatic" => [ qw(I L V) ], storing array refs at the hash, not arrays per se. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Finding directories within a tree

2005-10-07 Thread Adriano Ferreira
On 10/7/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Basically, I have a file structure similar to: > > Dir1\Dir2\Support\119404\dirx\diry > Dir1\Dir3\Support\119893\dirx > Dir1\Dir4\Support\14\dirx\diry\dirz > . > Dir1\Dir1000\Support\100858 > > I am simply interested in finding the

Re: how to check the particular perl module is installed or not on unix machine...............

2005-10-01 Thread Adriano Ferreira
On 10/1/05, Octavian Rasnita <[EMAIL PROTECTED]> wrote: > perl -MModuleName -e1 You can even find out the version you have installed with perl -M'ModuleName 999' -e1 where 999 is a too large version number. For example $ perl -M'lib 999' -e1 lib version 999 required--this is only versio

Re: generating a wordlist from an array of arrays

2005-09-30 Thread Adriano Ferreira
On 9/29/05, mark berger <[EMAIL PROTECTED]> wrote: > hey list. i stuck with gererating a wordlist from a changing > multidimensional array. each entry in the array contains a list with the > possible values. I am bit rusty, because it took me a little too long to make it work, but here is a recurs

Re: how do i test for reference equality?

2005-09-13 Thread Adriano Ferreira
> Are there any ways to test whether the two references point to the same > thing? >From "perldoc perlref": Using a reference as a number produces an integer representing its storage location in memory. The only useful thing to be done with this is to compare two references numericall

nice low cost ISP with support for mod_perl, any suggestions

2005-09-05 Thread Adriano Ferreira
I am on the verge of trying to deploy a small web application for small business. I would like to see it working preferably under mod_perl. Does anyone has suggestions about possible providers with a good compromise between service quality and cost? As it is directed to small business, it won't be

Re: Error on: my $sth->execute;

2005-07-18 Thread Adriano Ferreira
On 7/18/05, Adriano Ferreira <[EMAIL PROTECTED]> wrote: > Beware of the difference of double and single quotes in Perl. Double > quotes interpolate: Oops. That's my mistake. Your single quotes are within double quotes. Let's try again. I would say that something is wr

Re: Error on: my $sth->execute;

2005-07-18 Thread Adriano Ferreira
On 7/18/05, Ron Smith <[EMAIL PROTECTED]> wrote: > my $sql = "INSERT INTO products VALUES ('$sku', '$partNum', '$name', > '$descr', '$stockNum', '$qty', '$img', 'vendNum', '$price')"; Beware of the difference of double and single quotes in Perl. Double quotes interpolate: $a = 3; print "a: $a\n"

Re: 0; and 1;

2005-07-14 Thread Adriano Ferreira
On 7/14/05, Beast <[EMAIL PROTECTED]> wrote: > > I coudn't find any reference (yet) the meaning of 0; or 1; in the end of > perl program. In the examples in "perldoc perlmod" you will find 1; # don't forget to return a true value from the file This is needed when you do a 'require' over a Per

<    1   2