Re: using WWW::Mechanize

2004-04-11 Thread Rob Dixon
Randy W. Sims wrote: > > The following code connects to a linksys router and resets the > connection. I can't seem to find the proper way to access the contents > of the HTML::Form::InputText object without accessing it's internal data > structure. > > This is part of the expression in question: >

Re: DBM Buffer problem

2004-04-11 Thread John W . Krahn
On Sunday 11 April 2004 04:22, Prash wrote: > > Hi Peeps, Hello, > I'm having a weird buffering problem. I'm "tie-ing" a HASH to a DBM > and then modifying the key values. But it isn't writing to the DBM > until I untie the HASH variable. How do I flush the buffer? I know > the standard $| way an

Re: Who is running my program?

2004-04-11 Thread WC -Sx- Jones
Tim Johnson wrote: If you are on a Win32 system, you can check the $ENV{USERNAME} value. Do not use that on Unix -- $ENV{USERNAME} can be lied about easily... -- _Sx_ http://twilightzone.insecurity.org/ _ http://postfix.insecurity.org/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: DBM Buffer problem

2004-04-11 Thread WC -Sx- Jones
Prash wrote: ... If I place the tie and untie inside the loop then it works?? Code: tie (%KSK, 'DB_File', $database) or loganddie ("Unable to open dbm file $database"); while () { . $KSK{$user} = "lalala"; } untie (%KSK); (I was going to stick one of those illegal copyright URLs here -

RE: Who is running my program?

2004-04-11 Thread Tim Johnson
If you are on a Win32 system, you can check the $ENV{USERNAME} value. -Original Message- From: Chance Ervin [mailto:[EMAIL PROTECTED] Sent: Saturday, April 10, 2004 5:07 PM To: beginners Subject: Who is running my program? I am writing a perl program to access client information for re

DBM Buffer problem

2004-04-11 Thread Prash
Hi Peeps, I'm having a weird buffering problem. I'm "tie-ing" a HASH to a DBM and then modifying the key values. But it isn't writing to the DBM until I untie the HASH variable. How do I flush the buffer? I know the standard $| way and it ain't working. Any help would be muchly appreciated. If I