Re: Problems getting a simple form to work.

2003-04-04 Thread javamaster
Mike Butler wrote: Hi Li, Rob and Mark. Thanks for your help. My site is being hosted by Hypermart, so I don't have access to /var/log/httpd. My new simpleform.cgi now looks like this: #!/usr/local/bin/perl -wT use CGI; use strict; $username = param('username'); should be my $username = param('

Re: Good Perl cgi book?

2003-03-18 Thread javamaster
Bob X wrote: What is the best book for a beginner to get started with on Perl and CGI? Bob MY favorite is /Sams Teach Yourself Perl in 24 Hours./ Tim -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

passing page URL to SSI script

2003-03-11 Thread javamaster
I am including the same CGI script as an SSI on several web pages. I need to know which page the script was run from (something like the javascript window.location variable). I want to be able to know if the script was executed from index.html, or contact.html, or products.html, etc. I cannot f