RE: File read blocking within embperl doc

2002-03-05 Thread Jack Knight
Thanks for the quick answer. Works fine now. > -Original Message- > From: Gerald Richter [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 05, 2002 3:58 PM > To: Jack Knight; [EMAIL PROTECTED] > Subject: Re: File read blocking within embperl doc > > > Hi, >

File read blocking within embperl doc

2002-03-05 Thread Jack Knight
Hi, I have a simple index.epl page which I want to read through the files within a directory and extract a comment line which contains a description for the file. However, opening the files is no problem - if I remove the while read loop the code executes, albeit uselessly. Otherwise reading appe

RE: Sendmail WIN nt

2002-01-07 Thread Jack Knight
Check out Net::SMTP and/or MIME::Entity at cpan.org JFK > -Original Message- > From: Sean Ahern [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 07, 2002 11:50 AM > To: [EMAIL PROTECTED] > Subject: Re: Sendmail WIN nt > > > Hans de Groot wrote: > > > Hi and happynew year. > > > > I

RE: $fields versus !fields

2001-10-17 Thread Jack Knight
> -Original Message- > From: Gerald Richter [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 17, 2001 2:59 PM > To: Jack Knight > Cc: Embeded PERL ML > Subject: Re: $fields versus !fields > > > > > > From: > http://perl.apache.org/embperl

RE: $fields versus !fields

2001-10-17 Thread Jack Knight
> -Original Message- > From: Gerald Richter [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 17, 2001 2:08 PM > To: Jack Knight > Cc: Embeded PERL ML > Subject: Re: $fields versus !fields > > > > > > !fields again returns everything, ignoring th

$fields versus !fields

2001-10-16 Thread Jack Knight
Hi, My database table contains many records with the same value for the field "batchnum", and I want to extract the batch numbers and list them in an HTML table. SELECT * ... will give me thousands of records, which I don't want. SELECT DISTINCT Batchnum gives the correct result, but I cannot se