Re: Displaying Problems

2002-06-27 Thread perl-dvd
ot; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, June 26, 2002 6:24 PM Subject: Re: Displaying Problems On Tue, 25 Jun 2002, [EMAIL PROTECTED] opined: :> CGI.pm--a threat to our way of life! Down with the troglodytes! :) :Well, not exactly my point, but ok :) Ju

Re: Displaying Problems

2002-06-26 Thread eric-perl
On Tue, 25 Jun 2002, Kyle Babich wrote: > Ok, I did like perldoc cgi said and changed it to this: > > print start_html( > -title => "IMAP.cc", >-head => Link( >{ >-rel => "stylesheet", >-type => "text/css", >-href => "style.css", >

Re: Displaying Problems

2002-06-26 Thread fliptop
On Tue, 25 Jun 2002, [EMAIL PROTECTED] opined: :> CGI.pm--a threat to our way of life! Down with the troglodytes! :) :Well, not exactly my point, but ok :) Just kidding :I just think there are too many who close their minds to anything but CGI.pm, :including potentially :more efficient custo

Re: Displaying Problems

2002-06-25 Thread Kyle Babich
} ), -bgcolor => "\#FF" ), It still won't work though. - Original Message - From: "Bob Showalter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 1:23 PM Subject: RE: Displaying Prob

Re: Displaying Problems

2002-06-25 Thread Niko Gunadi
On Tue, Jun 25, 2002 at 12:10:34PM -0600, [EMAIL PROTECTED] wrote: >You know, I work with about 5 other perl programmers, most of which do use >CGI.pm, but none of >them use it for anything other that gathering input from the web. I have also >downloaded many >packages from CPAN, I would sa

Re: Displaying Problems

2002-06-25 Thread perl-dvd
bout 2 1/2 years). Its pretty hard to make it more simple than: use Form; my %input = Form(); David - Original Message - From: "Bob Showalter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 11:12 AM Sub

Using CGI.pm [WAS Re: Displaying Problems]

2002-06-25 Thread John Brooking
I tend to always use CGI.pm to get the parameters, but I may or may not use it to output HTML. If it's simple HTML, I will, because it's easier and safer, but if it's complicated, like a lot of JavaScript in the header, or for most form input controls, I just use print statements, either normal on

Re: Displaying Problems

2002-06-25 Thread Brian
Hmm, a perl syntax checks out, but the script seemingly dies when ran? One thing I've found and don't yet fully understand, is it seems like when importing other modules the perl check doesn't seem to catch undeclared subs despite use strict- any ideas? Either way, I digress- basic things but

RE: Displaying Problems

2002-06-25 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 25, 2002 1:05 PM > To: [EMAIL PROTECTED] > Subject: Re: Displaying Problems > > > Well, I still can't get my page to display. > Remove this line: body(

RE: Displaying Problems

2002-06-25 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 25, 2002 12:47 PM > To: Bob Showalter; [EMAIL PROTECTED] > Subject: Re: Displaying Problems > > > Ok, so here's the deal: > > "Some HTTP/1.0 softwa

Re: Displaying Problems

2002-06-25 Thread kb
ECTED]> > To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Tuesday, June 25, 2002 9:33 AM > Subject: RE: Displaying Problems > > > > -Original Message----- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > Sent: Tuesday, June 25, 2002 1

Re: Displaying Problems

2002-06-25 Thread perl-dvd
ntent-type to work properly. David - Original Message - From: "Bob Showalter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 9:33 AM Subject: RE: Displaying Problems > -Original Message- > From: [EMAIL

Re: Displaying Problems

2002-06-25 Thread perl-dvd
age - From: "Bob Showalter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 9:33 AM Subject: RE: Displaying Problems > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: T

RE: Displaying Problems

2002-06-25 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 25, 2002 11:12 AM > To: Bob Showalter; [EMAIL PROTECTED] > Subject: Re: Displaying Problems > > > Bob, > > ... > So what exactly is the RFC2616 compliant con

Re: Displaying Problems

2002-06-25 Thread perl-dvd
MAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 8:39 AM Subject: RE: Displaying Problems > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 25, 2002 10:26 AM > To: Kyle Ba

RE: Displaying Problems

2002-06-25 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 25, 2002 10:26 AM > To: Kyle Babich; [EMAIL PROTECTED] > Subject: Re: Displaying Problems > > > Kyle, > Well, I'd start by printing an actual content

Re: Displaying Problems

2002-06-25 Thread perl-dvd
Kyle, Well, I'd start by printing an actual content type instead of depending on CGI.pm for that: --- print "content-type: text/html\n\n"; --- Second, I would condense your if to this -

RE: Displaying Problems

2002-06-25 Thread kb
I still can't get it to work even with those changes. Quoting Bob Showalter <[EMAIL PROTECTED]>: > > -Original Message- > > From: Kyle Babich [mailto:[EMAIL PROTECTED]] > > Sent: Monday, June 24, 2002 4:09 PM > > To: [EMAIL PROTECTED] > > Subject: Displaying Problems > > > > > > For th

RE: Displaying Problems

2002-06-25 Thread Bob Showalter
> -Original Message- > From: Kyle Babich [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 24, 2002 4:09 PM > To: [EMAIL PROTECTED] > Subject: Displaying Problems > > > For the following the syntax is correct but when I try to open it > nothing displays, what should I change? There are s