WWW Authentication link

2001-09-08 Thread Karthik Krishnamurthy
hullo list, this was posted on bugtraq recently. should be of help here too. http://www.seifried.org/security/www-auth/ Paper on WWW Authentication /kk -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: options for the checkbox...?

2001-09-08 Thread S Austin
try $name = param('bill') || 'off'; a better answer might be forthcoming if you explained why you want to have this value set. Simon K. Chan wrote: >Hi Everyone, > >Let's say I have this snippet of code for a checkbox: > > > >$name = param('bill'); > >If the box is checked, $name will have

Querying XML data

2001-09-08 Thread Rustagi, Dhiraj
All, Is there a way to query XML files in Perl 5.005 (solaris 2.7)? I have data stored in XML files and I want to extract data only from the files which match my selection condition. I guess that if there is something like that then I should be able to query files first and then process the resul

perl?

2001-09-08 Thread Petra1250
Server: Apache/1.3.14 (Unix) mod_perl/1.24 PHP/4.0.3pl1 FrontPage/4.0.4.3 mod_ssl/2.7.1 OpenSSL/0.9.6 Does' this tell you what version of perl is installed & what mod? I,m trying to upload a script but having no luck. Kevin, Unique Dining Furniture http://www.furniture2dine4.com";>Furniture

Re: options for the checkbox...?

2001-09-08 Thread Gunther Birznieks
No, the fact that unchecked boxes aren't sent is a browser issue. It's the same reason why submit buttons that are not clicked are undefined as well on a multi-submit form. What you can do, however, is use other form fields in combination with logic. For example, let's say the name of your ch

options for the checkbox...?

2001-09-08 Thread Simon K. Chan
Hi Everyone, Let's say I have this snippet of code for a checkbox: $name = param('bill'); If the box is checked, $name will have a value of "on" If the box is NOT checked, $name will be undefined (have no value). My Question: Is there a way to make $name have a value of "off" when the box is

Re: adding array elements

2001-09-08 Thread Roger C Haslock
How about > use strict; > my @data = qw/ 1 2 3 4 5 9 /; > my @sum = (0,0); > map { $sum[$_%2 ] += $data[$_] } ( 1..$#data ); > print $sum[0]; ... or sum such? - Roger - - Original Message - From: "Curtis Poe" <[EMAIL PROTECTED]> To: "David Draley" <[EMAIL PROTECTED