Re: How to Send Form Output to Multiple Mailing Lists

2007-01-11 Thread Owen Cook
On Thu, Jan 11, 2007 at 04:04:38PM -0500, Akbar Ehsan wrote: > The form has a bunch of check boxes: > > > Anderson > > Bloomington > > > Columbus > > East Chicago

Re: redirecting cookie

2007-01-11 Thread Mumia W.
On 01/10/2007 02:48 PM, Slawomir Orlowski wrote: Hello, Thank for you suggestions and help. I surely appreciate it. I don't think that is possible. Cookies are restricted to the domain of the server that creates them. As you found out, you'll have to use a query string (a GET parameter). If

Re: How to Send Form Output to Multiple Mailing Lists

2007-01-11 Thread Jonathan Mangin
Try Email::Send from CPAN. (I'm about 1 mile from you, as crows fly.) --Jon - Original Message - From: "Akbar Ehsan" <[EMAIL PROTECTED]> To: Sent: Thursday, January 11, 2007 3:23 PM Subject: How to Send Form Output to Multiple Mailing Lists Hi, My knowledge of Perl CGI is very limi

Re: How to Send Form Output to Multiple Mailing Lists

2007-01-11 Thread Owen Cook
On Thu, Jan 11, 2007 at 03:23:34PM -0500, Akbar Ehsan wrote: > Hi, > > My knowledge of Perl CGI is very limited. I am trying to modify a form > that currently send form output to one email address and from there it > is sent manually via email to different mailing lists. > > How can I modify the

How to Send Form Output to Multiple Mailing Lists

2007-01-11 Thread Akbar Ehsan
Hi, My knowledge of Perl CGI is very limited. I am trying to modify a form that currently send form output to one email address and from there it is sent manually via email to different mailing lists. How can I modify the form so that depending on the checkboxes selected, the form automatically

Re: redirecting cookie

2007-01-11 Thread Slawomir Orlowski
Hello, Thank for you suggestions and help. I surely appreciate it. > > I don't think that is possible. Cookies are restricted to the domain of > the server that creates them. As you found out, you'll have to use a query > string (a GET parameter). If that is the case, what is the meaning of -c

Re: how to force html4 output

2007-01-11 Thread David Dorward
On Thu, Jan 11, 2007 at 02:49:31AM +0100, Oliver Block wrote: > Can anyone tell me, if there is a way to force CGI.pm to deliver the > html code with a DOCTYPE switch for HTML4 and not XHTML? $ perl use CGI qw/:standard -no_xhtml/; print start_html(); (^D) http://www.w3.org/TR/html4/loose.dtd";>

how to force html4 output

2007-01-11 Thread Oliver Block
Hello list, first of all a blessed 2007 to all of you. Can anyone tell me, if there is a way to force CGI.pm to deliver the html code with a DOCTYPE switch for HTML4 and not XHTML? As there are some problems with the media type for XHTML I'd rather prefer HTML 4. Regards, Oliver -- To uns