Re: WELCOME to beginners-cgi@perl.org

2005-04-26 Thread Shu Cao
Hi, I am new to Perl CGI programming. And I encounter a difficult problem wish you guys can help me. Thank you! Here is the problem, how can Perl CGI program get the unofficial HTTP header value like x=y. I examine the %ENV hash, and found nothing but some standard HTTP headers like Accept,

Re: About unoffical HTTP headers

2005-04-26 Thread Wiggins d'Anconia
Shu Cao wrote: Hi, Sorry, my last email has some errors. The unofficial HTTP header should look like x: y not x=y. I am new to Perl CGI programming. And I encounter a difficult problem wish you guys can help me. Thank you! Here is the problem, how can Perl CGI program get the

calling perl program within a cgi script with parameters from html form

2005-04-26 Thread Deepblues
I have a problem linking my cgi script to the perl function. I have perl functions to perform manipulations to the database. I am creating a web front end to it. I have a html form which accepts data from the user and calls the cgi script ( in perl)which processes this data , performs

Re: grep pattern problem

2005-04-26 Thread Ing. Branislav Gerzo
TapasranjanMohapatra [T], on Monday, April 25, 2005 at 17:51 (+0530) wrote: T The directory and files have all permissions (777) recursively. T I see the same problem when I do grep pattern ../directory/* also. T Can someone tell me what may be the problem. maybe your path is not well set up.

Alternative Modules

2005-04-26 Thread Mike Blezien
Hello, we are currently using the Mail::Audit module to resend piped incoming emails to a particular domain then sends it to various aliases emails from a database. I'm trying locate a similar module but doesn't put alot of the header garbage into the body of the email. Then Mail::Audit doesn't

Online Banking

2005-04-26 Thread Mike Blezien
Hello, Does anyone on the list of any Perl application,out-of-the-box, for setting up a Online Banking Money Transfer System. We've found a few build with PHP, but prefer Perl. Or are there any good perl modules available to build one from the ground up. Search CPAN but could find anything

Re: About unoffical HTTP headers

2005-04-26 Thread Shu Cao
Hi, Wiggins d'Anconia: This is going to depend on the web server, as it is the software parsing the HTTP request, it just passes execution to the CGI and sets up the environment before hand. So it is up to the web server software to set in the environment the extra headers, you should check

Re: About unoffical HTTP headers

2005-04-26 Thread Shu Cao
Hi, Charles K. Clarkson: This is the first I have heard there were unofficial HTTP headers and you have me curious. Why would you want to see these? Are you writing a low level server script? We just use HTTP protocol transferring our customized messages. The client side is implemented