imate Troublshooting
- Original Message -
From: "Matt Corbett" <[EMAIL PROTECTED]>
To: "'Dennis Stout'" <[EMAIL PROTECTED]>; "'Randy Kobes'"
<[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, July 02, 2003 11 55
Su
th of you can recommend a good charity I will
make a small donation for your time. Again thanks
Matt
-Original Message-
From: Dennis Stout [mailto:[EMAIL PROTECTED]
Sent: 02 July 2003 19:28
To: Matt Corbett
Subject: Re: Please help newbie with Module problem.
> I don't have a Pe
On Wed, 2 Jul 2003, Matt Corbett wrote:
> Dear List,
> I have got a problem that I can't fix no way, no how.
>
> I am porting a Linux website to xp pro.
> I need to use the Apache::Request module on a range of
> programs to use POST and GET methods in my HTML to process
> information gathered.
>
> this, however the line $r->content-type('text/html'); seems to be
> giving my compiler some problems. You could'nt just give me a hint on
My mistake, shift key didn't get pressed hard enough =P
$r->content_type('text/html');
Dennis
On Wed, 2003-07-02 at 11:50, Matt Corbett wrote:
> I need to use the Apache::Request module on a range of programs to use
> POST and GET methods in my HTML to process information gathered.
Actually, you don't. You can use CGI.pm, CGI::Simple, CGI_Lite, etc.
for this.
If you want to use Apache::R
> however when I run the following code
>
> #!c:/perl/bin/perl -w
> use Apache ();
> use Apache::Request ();
> use CGI::Carp qw(fatalsToBrowser);
> my $r = Apache::Request->new(shift);
> # my $apr = Apache::Request->new($r);
> print "Content-type:text/html\n\n";
> print "Hello, World...\n";
> pri