setting user-agent string

2002-11-08 Thread Admin-Stress
Hi, Here I got a code to upload file to a cgi running in a webserver : #!/usr/bin/perl use warnings; use strict; use HTTP::Request::Common qw(POST); use LWP::UserAgent; my $url ='http://www.mydomain.com/cgi-bin/upload.cgi'; my $file = 'testfile.dat'; my $ua = new LWP::UserAgent; my $req = POST

Re: buttons groups

2002-11-08 Thread zentara
On Thu, 7 Nov 2002 17:04:40 -0600, [EMAIL PROTECTED] (Jerry Preston) wrote: >I have two groups of three buttons each and I want to but the on the same >screen, but they inter react with each other. How do you keep them apart? No one can help you unless you post the code which causes your problem

Re: setting user-agent string

2002-11-08 Thread zentara
On Fri, 8 Nov 2002 03:00:33 -0800 (PST), [EMAIL PROTECTED] (Admin-Stress) wrote: >Here I got a code to upload file to a cgi running in a webserver : > >#!/usr/bin/perl >use warnings; >use strict; >use HTTP::Request::Common qw(POST); >use LWP::UserAgent; > >my $url ='http://www.mydomain.com/cgi-bin

RE: buttons groups

2002-11-08 Thread Jerry Preston
Sorry about that!! group 1 print $query->button( -name=>'SysFail', -value=>'Failed in System', ); print $query->button( -name=>'SysFail', -value=>'DOA', ); p

sending an email attachment

2002-11-08 Thread Anthony E.
hello, i need to write a program that will send an email with some text in it as the body, and also have a word document attached to it. any suggestions on a module to do this? __ Do you Yahoo!? U2 on LAUNCH - Exclusive greatest hits videos http:

Re: sending an email attachment

2002-11-08 Thread William McKee
On 8 Nov 2002 at 11:37, Anthony E. wrote: > i need to write a program that will send an email with > some text in it as the body, and also have a word > document attached to it. > > any suggestions on a module to do this? Hi Anthony, Check the archives. This question has been asked many times b

RE: sending an email attachment

2002-11-08 Thread Nikola Janceski
Mail::Sender is good for this, make sure you try a test script first. > -Original Message- > From: Anthony E. [mailto:apwebdesign@;yahoo.com] > Sent: Friday, November 08, 2002 2:38 PM > To: [EMAIL PROTECTED] > Subject: sending an email attachment > > > hello, > > i need to write a progr

RE: sending an email attachment

2002-11-08 Thread Luna Antonio (Servi-Centro)
You need to download the perl modules listed below and copy the code to a perl program. use MIME::QuotedPrint; use MIME::Base64; use Mail::Sendmail 0.75; # doesn't work with v. 0.74! %mail = ( SMTP => 'smtp.site1.csi.com', from => '[EMAIL PROTECTED]', to => '[EMAIL PROTECT