Expertise I can help with questions regarding module installation, regular expressions, CGI, web development, server administration, etc.
Experience I have built my own framework using HTTP::Engine. I have also wrote many scripts to automate system administration tasks. Before using HTTP::Engine, I used CGI.pm as a solution for web applications. I also have experience with a vast array of CPAN modules.
Q: Can you help me to adopt the correct optimum settings for fast cgi? Our site runs on IIS6, PHP & ... A: I'm not familiar with a Windows environment, but I will say that 15 to 20 visitors a minute is not ...
Q: I have a HTML form just like this form that you have in here. I collect the info and dump it into a ... A: getting a CGI error can be any number of things wrong. The error message that you are getting is ...
Q: I have a HTML form just like this form that you have in here. I collect the info and dump it into a ... A: Your EOLN character you want to switch is \n. You can switch it with something else like: ...
Q: how to call from one perl program to another perl program with examples ANSWER: You can easily call ... A: I'm having trouble understanding your question...do you mean subroutines? Like a function? ...
Q: how to call from one perl program to another perl program with examples A: You can easily call (any) program within a perl script using ` (backticks), or qx(). I prefer to ...