Hello everybody, I am very much depressed and unable to find a solution. Please some one with the experties help me. 1] Below is my script which allows me to...
Hi, My requirement is to search for the particular folders in a path, and copy the contents of the folder to the local directory. I can do this using...
Hai Folks, I know application side programming in perl to some extent, but i wannu learn perl/CGI programming. Can anyone help me to find free online Books for...
Hai Folks, (1) I want to monitor a perl script and when that perl script stops running, I want to run another perl script immediately. Is that possible. (2) I...
1) Is there some reason why you can't run the scripts in some sort of batch mode? Unix and Windows both support that. Otherwise you have to decide how much...
Hi Friends , Enjoying being a part of thi group . I am learning PERL and practicing it . I need Some good Perl Documents like " Mastering Regular Expressions "...
I may have just gotten unlucky here but let me share my story... I'm somewhat new at web development but have many years experience in programming. I Made a...
You probably didn't have the correct permissions set on the host server. They need to be given execute permissions - chmod 755 - for the server to execute the...
... PS. Formmail is a generic form handler; it's not a "standard" form handler by any means, merely one available for folk who aren't familiar with writing ...
No, I did indeed set the permissions to 755. Am working on a page that will demonstrate the problems I'm having. In the mean time I'd like to share (another)...
... I guess you've tried most things then. Sorry, I can't help any more. There probably isn't much documentation; many generic and/or home-grown general...
... The script gets the raw data from each field. Generally, we use CGI.pm, not that internal form parser in formmail, to process the field data into a usable...
I don't know much...but I know enuff to get in trouble.... I beleive the Recipient (the owner of the form) in the HTML and the Recipient in the cgi must...
Another thought. I have been told that Matts Script has security issues. but that another code that is used by my web host has a mail form cgi that has fixed...
Thanks. I think the lessons I've learned here are: - Use newer stuff - Write your own when it's not to big of a deal. - Either use your own web server or be...
... I would amend this to: Custom solutions are often better than general solutions. Writing your only script can be more dangerous than using a very well...
Hello, I currently do my development work with Windows/Apache/perl, then use MS Frontpage to publish my files to my ISP server running Linux/Apache/perl. The...
... <snip> ... Actually, you don't nee the ".exe" in the she-bang line. <snip> ... I had the same problem when I started developing in Perl 8 years ago. Go...
Hello, I currently do my development work with Windows/Apache/perl, then use MS Frontpage to publish my files to my ISP server running Linux/Apache/perl. The...
Walter, Thank you! I've installed quite a few modules with my ActiveState perl installation, so decided not to reinstall perl from scratch. However, I found...
hi, Im Ramesh., what is an associaltive array ?? hwo to check the keys and values of asscoiative array is defined r not....plz help me.. Thanks & Regards ...
... bhupal78999> Im Ramesh., what is an associaltive array ?? hwo to check the bhupal78999> keys and values of asscoiative array is defined r not....plz...
Hi Ramesh, I googled for "Perl associative array" to get information on associative array then I got so many good links which are related to associative...
... malyadri> I googled for "Perl associative array" to get information on associative malyadri> array malyadri> then I got so many good links which are...
Hi all, whenever im using....... (to get the no. of occurences of the word "the" ) @words = split(/\bthe\b/, $line); $thecount += @words - 1; im getting error...
Hi Malyadri, thanks for ur help....definately i will grow the links...u have given Thanks & Regards From ramesh ... Hi Ramesh, I googled for "Perl associative...
... Didn't read the docs, huh? According to perlfaq4 this is a good way to get that count. my $count = () = $line =~ /\bthe\b/ig; Since it looks like you are...
Hi Ramesh, Can you send me entire code, so that I can test on my system. Thanks & regards Malyadri Beegala ... -- Malyadri Beegala Software Developer, Larsen &...
Hello, I am attempting to build a page that uses a cgi script to extract info from a delimited text file database and then place it into an html file for ...