Re: book for newbee

2001-07-29 Thread Rachel Coleman
> More Specialized book! The CGI.pm book ,, by Lincoln Stein ( creator of > the CGI.pm) ... highly recommended ...! I've found 'CGI Programming with Perl, 2nd Edition' by Scott Guelich, Shishir Gundavaram & Gunther Birznieks to be very useful - it has a chapter on CGI.pm but also looks at a

Re: Running perl scripts on other machines and getting feedback

2001-07-19 Thread Rachel Coleman
useful, both for extracting any input and building the output. Don't forget: use warnings, taint and strict :) Best wishes, Rachel Coleman -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: passing form values to another Perl script

2001-07-19 Thread Rachel Coleman
ed about... he said he wanted to use values > from a form as command-line arguments to another script. Regardless, you > still need to practice safe form validation practices, no matter what you > ned up doing with the data. > > -- Brett Best wishes, Rachel Coleman -- To unsub

Re: passing form values to another Perl script

2001-07-18 Thread Rachel Coleman
you stick to best practice now, you will make your life easier in the future. Best wishes, Rachel Coleman -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Two Array into One Hash

2001-07-17 Thread Rachel Coleman
caTwo ); my %hashOne; # use arrays as hash slices with interpolation @hashOne{ @One } = @Two; while ( ( $a, $b ) = each( %hashOne ) ) { print "$a is $b\n"; } The output of this script is: 1 is label one 2 is labelTwo 3 is label 4 is label4 5 is label five Hope that's what you wanted. Best wishes, Rachel Coleman -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]