RE: CGI Module Reference

2003-07-07 Thread Charles K. Clarkson
Shaw, Matthew [mailto:[EMAIL PROTECTED] : : Could someone direct me to a reference that contains all of the : available methods in the CGI module? http://stein.cshl.org/WWW/software/CGI/cgi_docs.html There is also one on the computer where you installed perl, at perldoc.com, on CPAN,

sending mail to a group using perl

2003-07-07 Thread Sally Librilla
Hi, I'm send email using the Mail::SendMail module. I understand how the send To field works for multiple works however, I can't get it to work to send mail to a group existing in my Lotus Notes mailbox. Does anyone knows how i can make it work? Thanks in advance.

CGI Module Reference

2003-07-07 Thread Shaw, Matthew
Hi all, Could someone direct me to a reference that contains all of the available methods in the CGI module? I'm both new to using mod CGI and HTML in general so I'm just looking for a good rosetta stone between the two. I got hung up recently trying to implement $query->Tr and didn't real

Fwd: Working with DBI

2003-07-07 Thread Greenhalgh David
Begin forwarded message: From: Greenhalgh David <[EMAIL PROTECTED]> Date: Mon Jul 7, 2003 5:17:33 pm Europe/London To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Working with DBI On Monday, July 7, 2003, at 01:12 pm, Craig Dean wrote: On Sunday 06 July 2003 02:14 pm, Greenhalgh Dav

Re: look arounds

2003-07-07 Thread Steve Grazzini
On Mon, Jul 07, 2003 at 01:00:22PM +0100, Rob Dixon wrote: > Steve Grazzini wrote: > > On Sun, Jul 06, 2003 at 11:20:03AM -, mark sony wrote: > > > $_ = "The brown fox jumps over the lazy dog"; > > > /the (\S+)(?{ $color = $^N }) (\S+)(?{ $animal = $^N })/i; > > > > $^N is new in 5.8.0. > >

Re: Working with DBI

2003-07-07 Thread Greenhalgh David
On Monday, July 7, 2003, at 01:12 pm, Craig Dean wrote: On Sunday 06 July 2003 02:14 pm, Greenhalgh David wrote: If you are assigning the value of the field "available" to a variable then you should kill or delete that variable (CGI::delete) before you are able to assign a new value to it. Craig

Re: Counting the characters..

2003-07-07 Thread Oliver Schnarchendorf
> $description = "This is my description and it contains numerous __ > double underscore marks and __ these marks some special area in the > field" > > What I want to do is to count/extract the amount of times these > double underscore marks are used. Like in the above example it should > show

Re: look arounds

2003-07-07 Thread Rob Dixon
Steve Grazzini wrote: > On Sun, Jul 06, 2003 at 11:20:03AM -, mark sony wrote: > > $_ = "The brown fox jumps over the lazy dog"; > > /the (\S+)(?{ $color = $^N }) (\S+)(?{ $animal = $^N })/i; > > print "color = $color, animal = $animal\n"; > > > > When I run the program it gives :color = ,