Re: Perl Boilerplate???

2001-06-28 Thread Peter Scott
... and some people will argue about the -w. Were you looking for something like #!/usr/bin/perl -w use strict; use CGI qw(:all); use CGI::Carp qw(fatalsToBrowser); No, wait, some people will argue about the last line as well. Maybe this is why you haven't found any examples :-) -- Peter Scott

Re: DELETING A COOKIE

2001-07-29 Thread Peter Scott
data. Will this have any thing to do with it? -- Peter Scott Pacific Systems Design Technologies http://www.perldebugged.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: libwww-perl and URI modules for 5.005_02

2002-07-10 Thread Peter Scott
your program here so we can't tell how the error might lie there, but here's a hint: if the GET program supplied with libwww works, the problem is in your code. -- Peter Scott Pacific Systems Design Technologies http://www.perldebugged.com/ -- To unsubscribe, e-mail: [EMAIL PROTECTED

Re: path problem

2005-04-09 Thread Peter Scott
$ -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

Re: Adding a comma to format localtime

2007-04-12 Thread Peter Scott
and readable: use POSIX qw(strftime); my $datetime = strftime %a, %d %b %Y %T, localtime; -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: What is the function value in perl?

2008-01-05 Thread Peter Scott
single and that should get you started. -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: What is the function value in perl?

2008-01-12 Thread Peter Scott
to www.google.com. Enter 'perl read function key' (without the quotes). Follow the first link. -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Include PHP file inside the cgi script

2008-05-28 Thread Peter Scott
the value assigned. Assuming it's a straightforward variable = value statement. If it's computed in some way, that won't work. -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: Carry Variable to Form

2008-09-21 Thread Peter Scott
be. -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: PERL CGI SCRIPT killed by apache on client abort

2011-03-28 Thread Peter Scott
what it said it would do or your script's fault for not trapping an exception it needs to handle. -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ http://www.informit.com/store/product.aspx?isbn=0137001274 http://www.oreillyschool.com/courses/perl3/ -- To unsubscribe

Re: need help with a form

2011-11-28 Thread Peter Scott
/contact_us.html Well, your first problem is that the action target of the form is an HTML page instead of a CGI program. What code have you got so far? -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ http://www.informit.com/store/product.aspx?isbn=0137001274 http

Re: Attach iCal event to an cgi mail

2012-06-07 Thread Peter Scott
On Mon, 04 Jun 2012 10:37:35 -0700, Marek wrote: Could somebody please tell me, how can I see into a FILEHANDLE in Perl debugger? I tried with x SENDMAIL but I get only empty array. That filehandle is open for *output* in your program! What is it you want to examine? -- Peter Scott http

Re: Attach iCal event to an cgi mail

2012-06-11 Thread Peter Scott
. Is there any means to look inside? How to redirect the content of SENDMAIL in the debugger? Am Donnerstag, 7. Juni 2012 06:19:43 UTC+2 schrieb Peter Scott: On Mon, 04 Jun 2012 10:37:35 -0700, Marek wrote: Could somebody please tell me, how can I see into a FILEHANDLE in Perl debugger? I tried