Re: Testing Perl on a Web Page

2003-11-28 Thread Jeff Westman
"R. Joseph Newton" <[EMAIL PROTECTED]> wrote: > Try this: > > > > > Joseph's first Perl-based form > > > > > Name > Rank > Serial Number > > > > > Then use CGI to get the parameters. > > perldoc CGI I got a '405 error', resource not available. I guess I'll just have to switc

Re: Testing Perl on a Web Page

2003-11-26 Thread R. Joseph Newton
Jeff Westman wrote: > > Everything makes sense and I appreciate your answering me. Now, I assume the > script has to be executable so I will need telnet access. I tried > (instead) to use a perl script I have that does ftp (including site->chmod) > -- assuming I can't telnet. Anyway, I use

Re: Testing Perl on a Web Page

2003-11-26 Thread R. Joseph Newton
Jeff Westman wrote: > Dan Muey <[EMAIL PROTECTED]> wrote: > > > Perfect! Exactly what I was looking for. I can deal with the > paths/permissions/etc. I'm just trying to figure out how to get started. > Oh, would I call this inside a web page with a

RE: Testing Perl on a Web Page

2003-11-26 Thread Dan Muey
> > > > > Thanks again...! > > > > No sweat! > > Everything makes sense and I appreciate your answering me. > Now, I assume the script has to be executable so I will > need telnet access. I tried > (instead) to use a perl script I have that does ftp > (including site->chmod) > -- assum

RE: Testing Perl on a Web Page

2003-11-26 Thread Jeff Westman
Dan Muey <[EMAIL PROTECTED]> wrote: > > > > Hello There, > > > > > > > > I would like to see if my ISP has perl available if one > > > > wanted to incorporate perl into a web page. Is there a quick > > > > and dirty web page I can upload to my ISP to test if perl is > > > Try this: > > > > > >

RE: Testing Perl on a Web Page

2003-11-26 Thread Dan Muey
> Dan Muey <[EMAIL PROTECTED]> wrote: > > > > Hello There, > > > > > > I would like to see if my ISP has perl available if one > > > wanted to incorporate perl into a web page. Is there a quick > > > and dirty web page I can upload to my ISP to test if perl is > > Try this: > > > > test.cgi >

RE: Testing Perl on a Web Page

2003-11-26 Thread Bob Showalter
Jeff Westman wrote: > Hello There, > > I would like to see if my ISP has perl available if one wanted to > incorporate perl into a web page. Is there a quick and dirty web > page I can upload to my ISP to test if perl is available and works ? > I would also like to see what version of perl is ru

RE: Testing Perl on a Web Page

2003-11-26 Thread Jeff Westman
Dan Muey <[EMAIL PROTECTED]> wrote: > > Hello There, > > > > I would like to see if my ISP has perl available if one > > wanted to incorporate perl into a web page. Is there a quick > > and dirty web page I can upload to my ISP to test if perl is > Try this: > > test.cgi > #!/usr/bin/perl -w

RE: Testing Perl on a Web Page

2003-11-26 Thread Dan Muey
> Hello There, > > I would like to see if my ISP has perl available if one > wanted to incorporate perl into a web page. Is there a quick > and dirty web page I can upload to my ISP to test if perl is Try this: test.cgi #!/usr/bin/perl -w use strict; use CGI 'header'; print header(); print "/

Re: Testing Perl on a Web Page

2003-11-26 Thread Wiggins d Anconia
> Hello There, > > I would like to see if my ISP has perl available if one wanted to incorporate > perl into a web page. Is there a quick and dirty web page I can upload to my > ISP to test if perl is available and works ? I would also like to see what > version of perl is running ? > > Could