I have a script written for Linux and I am trying to use it under NT. the script has the following line:
use Date::DateCalc qw(:all);
Does this work for Activeperl for Win32 ?
The error I go...
I have this string "19991130.htm" how do i make it into "30/11/1999" (dd/mm/yyyy) and insert it into the database whose column is a date field?
I want to know ... what (if there is any) PERL code that I can add (and if it is possible) to ... all of my 'forms' (that either come back to me via email ... or get submitted to search a data...
I got a perl file, it is working at the netscape, but not at the Internet exploror,
the code as following: thanks!
#!/bnr/projects/pegasus/perl5
&handle_cmd_line;
print STDOUT "C...
I'm trying to configure FormMail to send an email to up to 5 different email addresses that are entered in a form by a visitor to my website. I named the variables email1 email2 email3 email4 ...
I installed ActivePerl on my Win98. But still have the following error-
Can't locate Net/FTP.pm in @INC (@INC contains: C:/Program Files/Perl/lib C:/Pro
gram Files/Perl/site/lib .) at ftpp...
convert an *entire* adobe pdf file into ascii
any software? any technique? in C or any other language.
i know there are some perl modules that parse the informational headers (which are ...
i got the value $test from a form
how to check if the value if $test is alphanumeric...setting $check to "yes" if it is...
Also, one last question..
My keywords were just the 10 most frequent words (ie TOTAL) from the entire document.
The following code finds the
5 most freq. words per parah and 10 most fr...
Is there a way to test for command line redirection?
I want to know if someone is invoking
perl command.pl > afile
verses
perl command.pl
Thanks
#! /usr/local/bin/perl
$num=hex("8009");
print "$num";
++$num;
printf"%x",$num;
print "$num";
++$num;
printf"%x",$num;
###################################
look at the code above.I a...
I want to use a perl script to logon to a website. My server is not local and I would prefer a script that does not contain my username/password in plain text. This may be a silly question, ...
Hi,
I am trying to plot a chart similar to the one found on http://www.nasdaq.com (on the right side). I have written a program that is more like a line graph using GD.
Can someone show...
I have a file called email.db The file is in this format.
name::location::bike::email
I can get the file in alphabetical order by doing this.
@sorted = sort @datafile;
open (datafi...
I have a perl script that runs a (relatively)classic forking routine. In it, the parent monitors the system and when the proper conditions exist, it kills the child process. When the conditi...