On Wed, 2004-01-14 at 10:19, James Edward Gray II wrote:
> On Jan 14, 2004, at 11:07 AM, jdavis wrote:
>
> > Thanks all who replied. From your post i gather that i need
> > to handle my redirect client sideso.
> >
> > #!/usr/bin/perl
> > use CGI qw(:standard);
> > print header;
> >
> > $|
On Jan 14, 2004, at 11:07 AM, jdavis wrote:
Thanks all who replied. From your post i gather that i need
to handle my redirect client sideso.
#!/usr/bin/perl
use CGI qw(:standard);
print header;
$| = 1;
print "hi\n";
sleep 3; # i would actually do a lot of other stuff here
print<
EOF
If
Thanks all who replied. From your post i gather that i need
to handle my redirect client sideso.
#!/usr/bin/perl
use CGI qw(:standard);
print header;
$| = 1;
print "hi\n";
sleep 3; # i would actually do a lot of other stuff here
print<
EOF
thanks,
jd
On Wed, 2004-01-14 at 0
> >redirect() does a header like header(), the first header
> that gets sent
> >is the header, the rest is content, even if The contetn
> looks just like
> >a header.
>
> Thanks for the correction, I have not found the time to read
> "CGI Programming with Perl" thoroughly and did not realize
>>print $q->header # do this - do that, using $q
>>
>>print $q->redirect("/thanks.html");
>
>redirect() does a header like header(), the first header that gets
>sent is the header, the rest is content, even if The contetn looks
>just like a header.
Thanks for the correction, I have not found the t
>
> Hi,
>
> like this:
>
> #!/usr/bin/perl -w
>
> use strict;
> use CGI;
> use CGI::Carp qw(fatalsToBrowser);
>
> my $q = new CGI;
>
> print $q->header
> # do this - do that, using $q
>
> print $q->redirect("/thanks.html");
>
> - Jan
redirect() does a header like header(), the first heade
> On Jan 14, 2004, at 3:25 AM, Jan Eden wrote:
>
> > Hi,
> >
> > like this:
> >
> > #!/usr/bin/perl -w
> >
> > use strict;
> > use CGI;
> > use CGI::Carp qw(fatalsToBrowser);
> >
> > my $q = new CGI;
> >
> > print $q->header
> > # do this - do that, using $q
> >
> > print $q->redirect("/thanks.htm
On Jan 14, 2004, at 3:25 AM, Jan Eden wrote:
Hi,
like this:
#!/usr/bin/perl -w
use strict;
use CGI;
use CGI::Carp qw(fatalsToBrowser);
my $q = new CGI;
print $q->header
# do this - do that, using $q
print $q->redirect("/thanks.html");
Unfortunately, this doesn't work. As Randal already said,
Hi,
like this:
#!/usr/bin/perl -w
use strict;
use CGI;
use CGI::Carp qw(fatalsToBrowser);
my $q = new CGI;
print $q->header
# do this - do that, using $q
print $q->redirect("/thanks.html");
- Jan
jdavis wrote:
>Hello,
> I have been able to use redirects with cgi.pm as long
>as the redirec
> "Jdavis" == Jdavis <[EMAIL PROTECTED]> writes:
Jdavis> I have been able to use redirects with cgi.pm as long
Jdavis> as the redirect is the only thing in the script.
First, this should be in the perl-cgi-beginners list instead of this list.
Jdavis> i.e.
Jdavis> #!/usr/bin/perl
Jdavis> u
10 matches
Mail list logo