odbc and others module

2001-06-29 Thread lonh seng
Hi all, Is there odbc module coming with perl, v5.6.1. I f not. Tell me where I can get it. Best Regards, lonh ___ Perl-Win32-Web mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

FYI: New module: Image::GD::Thumbnails

2001-06-29 Thread Lee Goddard
Hope it's useful. Lee --- Obligatory perl schmutter .sig: perl -e print chr(rand.5?92:47) while 1 NAME Image::GD::Thumbnail - create thumbnail images with GD SYNOPSIS use GD; use Image::GD::Thumbnail; # Load your source image open IN, 'E:/Images/test.jpg' or die

RE: How to configure Perl 5.6 in IIS 5.0? (Daini Xie)

2001-06-29 Thread Ember Normand
We converted from Unix and had a lot of different things going on with Perl. Here's how we ended up getting AS Perl to work. We also use PerlEX, so if you don't, just skip those instructions. We had a heck of a time getting things to work. All the information was found from different sources.

how to use Net::SMTP to mail to multiple users

2001-06-29 Thread andy
this is probably a stupid syntax question, but i'm using the following code to send mail: use Net::SMTP; $smtp = Net::SMTP-new('$server'); $smtp-mail($ENV{USER}); $smtp-to($formdata{'email'}); $smtp-data(); $smtp-datasend(To: $formdata{'email'}\n); $smtp-datasend(From: $webmaster\n);

RE: help!!!! browser interface on local machine

2001-06-29 Thread scott [gts]
http://www.sambar.com/ freeware win32 webserver that supports CGI scripts. it's small and easy to install also. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Shariman Azeze Sent: Thursday, June 28, 2001 9:48 PM To: [EMAIL PROTECTED] Cc: [EMAIL

RE: PLEASE REMOVE ME FROM THE LIST

2001-06-29 Thread Chris Devers
On Fri, 29 Jun 2001, scott [gts] wrote: a senior internet programmer can't figure out how to get off a mailing list ? Oh, he's oldschool, he cut his teeth before all this newfangled mailing list hoohah came along. Back in his day, they had to push the bits down the wire themselves, and if

Re: Cannot read textfiles with perl on IIS

2001-06-29 Thread Ron Grabowski
What about NTFS permissions? The webserver may allow outside people to view it but the file itself may not be viewable by anyone except by the person who created it. ___ Perl-Win32-Web mailing list [EMAIL PROTECTED]

RE: how to use Net::SMTP to mail to multiple users

2001-06-29 Thread Andrew Stevens
Title: RE: how to use Net::SMTP to mail to multiple users Andy, Try: $smtp-datasend(To: $formdata{'email1'}\n, $formdata{'email2'}\n); with \n after each email address. Andy -Original Message- From: andy [EMAIL PROTECTED] To: Ember Normand [EMAIL PROTECTED], [EMAIL

RE: odbc and others module

2001-06-29 Thread Steve Spears
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Try http://www.roth.net/perl/ Thank you, Steven Spears [EMAIL PROTECTED] - -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of lonh seng Sent: Friday, June 29, 2001 5:42 AM To: [EMAIL PROTECTED] Subject:

Re: perl and php data-structure interoperability

2001-06-29 Thread Ron Grabowski
of course, i could roll my own, but before i go to the trouble of writing a whole php-compatible serialize and deserialize module for perl, can anyone offer any help or suggestions on how to make PHP and Perl recognize each other's serialized data? I would serialize things into a CSV string

RE: perl and php data-structure interoperability

2001-06-29 Thread scott [gts]
the problem with that, is that i really want to have nested data. if i force myself to conform to a data structure that can be CSV'd, i'd loose almost all of the functionality of a hash, and kind-of defeat the purpose of using a serialized hash in the first place :( i'm probably going to have

RE: Subbing and ' in variables containing HTML

2001-06-29 Thread Roland Corbet
At 15:51 28/06/2001, Lee Goddard wrote: The safest way of doing this is not with a regex (as the perlre doc agress), but using HTML::TokeParser. Lee, Thanks for your help. I've managed to get what I want done using the above module. I can also see some uses for it in improving code that