Re: Hotmail.com vs. MIME:Lite

2002-09-18 Thread Anthony E.
do you want to send a text attachment in addition to an html embedded email? or do you want to show one or the other, ie - if the person has their email client to only accept text msgs, it'll show just the plain text message, otherwise it shows the html...if this is the case, you can send a mime

Re: &sub1(@array,$var); -> passing an array and scalar to a subroutine...

2002-09-17 Thread Anthony E.
thanks, i ended up getting what i wanted with references: &sub1(\@array,$var); sub sub1() { my ($ref, $var) = @_; my @data = @$ref; ... } --- drieux <[EMAIL PROTECTED]> wrote: > > On Friday, Sep 13, 2002, at 16:29 US/Pacific, > Anthony E. wrote: > [..] > &g

getting an intersection between two arrays....

2002-09-05 Thread Anthony E.
ie - i have two arrays (lists): @hrefs: a list of urls.. and @banned, and list of bad urls. I want to remove the @banned urls from @hrefs. How would i do this? __ Do You Yahoo!? Yahoo! Finance - Get real-time stock quotes http://finance.yahoo.com

word count (limit) in a scalar...

2002-07-16 Thread Anthony E.
hello, i have a bunch of text in a scalar $text How would I keep the word count to a maximum, and just dump the rest.. ie - I only want the paragraph to contain 500 words, and trash the rest. Thanks, Anthony __ Do You Yahoo!? Yahoo! Autos - Get fr

this may be offtopic: Open Source web-based email package?

2002-04-18 Thread Anthony E.
Hello, I'm looking for an open source web-based email package that will allow me to offer visitors free web-based email accounts (However, I don't want to have to setup system user accounts - as this would be a huge security risk). Any info/help is appreciated! = Anthony Ettinger [EMAIL PRO

Re: How do i set this?

2001-06-24 Thread Anthony E.
foreach my $target (@targets) { print "current target is: $target\n"; } --- Tim Grossner <[EMAIL PROTECTED]> wrote: > I am using a for like so: > > for(@targets) { > ...stuff... > } > > What variable can I use to specify the CURRENT > target to operate on? > > for instance: > > for(@targets)

Re: Help for a newbie..

2001-06-24 Thread Anthony E.
Find some scripts that use the perl environment variables...also read the documentation from cpan.org on CGI.pm - CGI.pm is a very helpful perl module that should already be installed with perl. (i suggest picking up the "Learning Perl" book published by O'Reilly (check bookpool.com or fatbrain.c

Malformed UTF-8 character with XML::Simple

2001-06-21 Thread Anthony E.
#x27;s one of the regexps that is throwing the error: $parse =~ s###sig; (finds 'alt' and replaces with 'alt=""' in tags) Any ideas what is causing this? When I remove the use of XML::Simple and define the configuration variables in the script, the programs runs withou