Re: Repost: problems with elsif and $self

2002-02-21 Thread Carl Jolley
On Thu, 21 Feb 2002 [EMAIL PROTECTED] wrote: > I fat fingered the last post and am reposting. I am running win2k sp w/ AS > Perl 5.6.1 > > Problem 1: > > if/elsif fails. The first if stmt evaluates to false, but then the > subsequent elsif stmts are never tested, such as: > > if() > { > > }

Re: Slightly OT question about email receiving...

2002-02-21 Thread Carl Jolley
On Thu, 21 Feb 2002, Morse, Richard E. wrote: > Hi! I realize that this question is OT -- if anybody knows where I should post > it, please let me know... > > I need to develop a perl script to deploy on a *nix box which accepts input from > sendmail (ie, it is called via a sendmail alias), pars

Paypal Integration Once Again

2002-02-21 Thread karthikeyan
Hi, Is it compulsory that we register this information in our paypal account like : 1. item id 2. item name for our shopping cart? because right now my requirement is - I have all this info item name, amount etc in my flat file and I am displaying this in my shopping cart and when

Re: pack

2002-02-21 Thread Will W
Hi, Carl-- Using the input record separator for fixed length records does work, just as the the fine manual says. However I left out one critical character in the code I sent last night-- the magic happens when $/ is assigned a _reference_ to an integer value, as below. use strict; { local

Re: pack

2002-02-21 Thread Sisyphus
- Original Message - From: "Will W" <[EMAIL PROTECTED]> > > Everyone's fascination with sysread() got me to poking around in the > camel and cookbook a bit-- and I still can't see the advantage here of > doing a low-level system call over using read(), which is generally > buffered for o

Re: pack

2002-02-21 Thread $Bill Luebkert
Sisyphus wrote: > - Original Message - > From: "Will W" <[EMAIL PROTECTED]> > >>Everyone's fascination with sysread() got me to poking around in the >>camel and cookbook a bit-- and I still can't see the advantage here of >>doing a low-level system call over using read(), which is genera