Re: multiple images

2004-06-09 Thread Johan Meskens CS3 jmcs3
Charles K. Clarkson escribió: From: Johan Meskens CS3 jmcs3 <> wrote: : # hello .. : # second question : how can i insert more than one image # i tried : the following: : : # foreach( 1..6 ){ : #print "http://127.0.0.1/cgi-bin/five.cgi\";>"; # } : : # but this returns 6 times the same image

RE: help with adjusting log file data?

2004-06-09 Thread Charles K. Clarkson
From: Catriona Pure Scents wrote: : Hi Charles, : : thanks immensely. As you can probably tell I am one of those : people who pulled some scripts off the net to get me going, : and insists on making alterations. There is nothing wrong with that. Many people run ve

Re: multiple images

2004-06-09 Thread Brad Lhotsky
On Wed, Jun 09, 2004 at 06:57:08PM +0200, Johan Meskens CS3 jmcs3 wrote: > > # hello > > # i don't know what comes first > # , source or question > > # thus > > #!/usr/local/bin/perl > > use CGI; > use strict; > use warnings; > YAY! > my $q=CGI->new(); > > print $q->header; > print $q->star

RE: multiple images

2004-06-09 Thread Charles K. Clarkson
From: Johan Meskens CS3 jmcs3 <> wrote: : # hello : : # i don't know what comes first : # , source or question : : # thus : : #!/usr/local/bin/perl : : use CGI; : use strict; : use warnings; : : my $q=CGI->new(); : : print $q->header; : print $q->start_html; : : # things : : print "http://

Re: Printing a multipart HTML output

2004-06-09 Thread Wiggins d Anconia
I suppose it is possible that it could, but remember Outlook is a mail client, specifically a MIME compliant one (well as much as Lookout is compliant with anything), which means it has to be able to deal with multiple attachments in a single request. But in the case of the browsers most often the

multiple images

2004-06-09 Thread Johan Meskens CS3 jmcs3
# hello # i don't know what comes first # , source or question # thus #!/usr/local/bin/perl use CGI; use strict; use warnings; my $q=CGI->new(); print $q->header; print $q->start_html; # things print "http://127.0.0.1/cgi-bin/image.cgi\";>"; # this works # first question : what is the cgi-oop-way o

RE: help with adjusting log file data?

2004-06-09 Thread Charles K. Clarkson
Catriona Pure Scents <[EMAIL PROTECTED]> wrote: : I think I understand what you are getting at : : I have no concept of "join" that you use. run this from the command line: perldoc -f join Or read about join in the 'perlfunc' file that comes with perl's standard documentation.