Re: CGI.pm > 2.98 breaks CGI::Carp?

2003-09-24 Thread Randal L. Schwartz
> "Drieux" == Drieux <[EMAIL PROTECTED]> writes: Drieux> just a quick knickle tour - I of course will defer to Randal Drieux> to go into more detail if required. That covers most of it, but let me put it a different way. "use CGI::Carp qw(fatalsToBrowser);" presumes that the person operatin

Re: CGI.pm > 2.98 breaks CGI::Carp?

2003-09-24 Thread Nestor Florez
Randall, Sorry, but what is TPJ ? Thanks, Nestor :-) -Original Message- From: "Randal L. Schwartz" <[EMAIL PROTECTED]> Sent: Sep 24, 2003 4:06 AM To: [EMAIL PROTECTED], Drieux <[EMAIL PROTECTED]> Subject: Re: CGI.pm > 2.98 breaks CGI::Carp? > "Drieux" == Drieux <[EMAIL PROTECTED]>

Re: CGI.pm > 2.98 breaks CGI::Carp?

2003-09-24 Thread Randal L. Schwartz
> "Nestor" == Nestor Florez <[EMAIL PROTECTED]> writes: Nestor> Randall, Nestor> Sorry, but what is TPJ ? www.tpj.com - the Perl Journal, formerly a print quarterly, then bundled with SysAdmin, is now back as an online monthly. I have a column there, taken over from "brian d foy", who is cur

Re: CGI.pm > 2.98 breaks CGI::Carp?

2003-09-24 Thread drieux
On Wednesday, Sep 24, 2003, at 09:23 US/Pacific, Randal L. Schwartz wrote: [..] www.tpj.com - the Perl Journal, formerly a print quarterly, then bundled with SysAdmin, is now back as an online monthly. I have a column there, taken over from "brian d foy", who is currently in Iraq under military

Real beginner's questions

2003-09-24 Thread Bill Teschek
Hello, I just subscribed to this list today hoping I might find someone who could help me over some of my initial hurdles with learning to work with Perl and cgi- scripts. All I know about the subject I learned today in browsing the web, and I'm finding that all of the sites I go to assume a

guestbook mySQL / PERL

2003-09-24 Thread David Gilden
Helllo, I have some questions here about my code. (which is going to have some issues) I am going to send this as 2 emails so that you don't have to scroll endlessly :) Goal: display database in a table with checkboxes so that the user can delete selected messages Please let me know how I c

guestbook mySQL deleting and refreshing

2003-09-24 Thread David Gilden
Helllo, Here is part two: Goal: delete selected records and refresh display_guestbook.cgi page. So the users sees the changes made. Please let me know how I can Improve my script and if you see anything that is bad style/practice. Thanks in advance for the lists help this code, Regards from

Re: Real beginner's questions

2003-09-24 Thread drieux
On Wednesday, Sep 24, 2003, at 10:36 US/Pacific, Bill Teschek wrote: [..] I'm not sure what else I need to do to get perl to work on our website. Also, we had an older version of perl installed at d:\website\perl by a previous administrator, and I'm not sure if there is going to be some kind of a

RE: guestbook mySQL / PERL

2003-09-24 Thread Charles K. Clarkson
David Gilden <[EMAIL PROTECTED]> wrote: : : Please let me know how I can Improve my script and if : you see anything that is bad style/practice. I just did a quick copy & paste. Here are my initial reactions. You're using strict and warnings. Kudos. You are using white space and indentation b

Re: Real beginner's questions

2003-09-24 Thread drieux
On Wednesday, Sep 24, 2003, at 11:39 US/Pacific, Bill Teschek wrote: HTH, Thanks for responding. My questions at this point are more in line with how to get a script file to work with perl on our webserver. I'm been doing static HTML for years now but have just never ventured into cgi and per

HTML headers with CGI.pm

2003-09-24 Thread David Gilden
Hello, Having some issues with cgi.pm Here is my PERL: ### # Start HTML OUT ### print header; print start_html( -title => $title ); print qq|\n|; and here is the output: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/199

Re: CGI.pm > 2.98 breaks CGI::Carp?

2003-09-24 Thread Nestor Florez
Thanks -Original Message- From: "Randal L. Schwartz" <[EMAIL PROTECTED]> Sent: Sep 24, 2003 9:23 AM To: Nestor Florez <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED], Drieux <[EMAIL PROTECTED]> Subject: Re: CGI.pm > 2.98 breaks CGI::Carp? > "Nestor" == Nestor Florez <[EMAIL PROTECTED]>

Re: HTML headers with CGI.pm

2003-09-24 Thread Todd W.
"David Gilden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > Having some issues with cgi.pm > Here is my PERL: > > ### > # Start HTML OUT > ### > print header; > print start_html( -title => $title ); > print qq|\n|; > > > and here