... C:\perl\bin\perl.exe %s %s Even better is: c:\perl\bin\perl.exe -Tw %s %s This ensures scripts are executed with warning and tainted. ... path to ... ...
88
James Fox
james@...
Oct 11, 1999 9:59 am
Although this has *nothing* to do with perl, I wondered if you wouldn't mind filling out this anonymous questionnaire on toilet habits at- ...
89
Lenny van Rensburg
lenny.vrensburg@...
Oct 13, 1999 10:33 am
Hi, can you please tell me were to start looking for information inconnection with sending mail from out a Perl program to a Groupwise user, we need to send a...
90
James Fox
james@...
Oct 13, 1999 11:37 am
Does anyone know how to use perl scripts to access a lyris database? Regards James...
91
Daniel Krajzewicz
krajzewicz@...
Oct 13, 1999 11:50 am
... Pipe (in this order) the 'from' 'to' and-subject-values to a mail-programm- -binary (as sendmail) and after this the content. Close each with a new-line. ...
92
Lenny van Rensburg
lenny.vrensburg@...
Oct 19, 1999 10:48 am
Hi, can you please help me, I want to email more than just one user at a time and I want to send them output of a file stored on my system. I am useing RED...
93
James Fox
james@...
Oct 19, 1999 11:23 am
Okay, this is probably an easy problem, but knowing me I'm going to make it sound complicated :-) Below is a script where for each list in a database, it...
94
Brad Fletcher
shade2tree@...
Oct 19, 1999 1:23 pm
can i make a telnet program that reads the incoming text and displays a graphic dependent on the content from the text? if so how(in short) ...
95
Greg Webster
greg@...
Oct 20, 1999 1:07 am
Doesn't sound like a Perl program you are looking for...are you thinking of doing this for something akin to a MUD? Either way, you are probably looking at...
96
Brad Fletcher
shade2tree@...
Oct 20, 1999 9:54 am
Thank you and yes it is for a game called tradewars 2002. I havent even touched perl yet so i wasnt sure what its capabilities are. again thank you. ... ...
97
Jeff Boes
jboes@...
Oct 20, 1999 6:10 pm
... Are you using CGI.pm? If so, then this is easy: foreach (@lists) { print $_ if (param($_)); } What might be more useful is if you gave all the checkboxes...
98
James Fox
james@...
Oct 21, 1999 2:58 pm
This is really about HTML rather than perl... I want to be able to click a button on my website to submit some fields to a perl script but at the same time...
99
Jeff Boes
jboes@...
Oct 21, 1999 10:36 pm
... I haven't, but I think all you have to do is to link the button to something that a) creates the window, giving it a name; and b) references the URL to the...
100
James Fox
james@...
Oct 22, 1999 4:11 pm
Hi again, I have a text file with user details on each line- looks like this- gill:password:gill@...:no:0 james:paswd2:james@...:yes:0 When someone...
101
Eric J. Goforth
goforth@...
Oct 25, 1999 3:35 pm
Getting them is easy, changing is a pain in the butt though. Perl cannot modify the contents of a file (with some exceptions). But you can however, rewrite...
102
Maisha Walker
maisha@...
Oct 25, 1999 5:53 pm
has anyone seen this problem: i set up a group of people to be able to access a specific folder on the site using the .htaccess & .htpassword files. i also...
103
Ian Fenelon
fenners@...
Oct 31, 1999 5:58 pm
Can anyone help? I a have now istalled Perl, Microsoft Personal Web Server and I have also developed my Web Page. I also understand the basic concept about how...
104
Frank Hale
frankhale@...
Oct 31, 1999 6:49 pm
... I've written a small Perl forum which generates an online message board which you can post messages to and view messages. The code was written early this ...
105
IAN MAXWELL DENNEY
IANMAX@...
Nov 2, 1999 5:01 pm
Hi, I would realy be grateful if you could send me a copy of your Perl script for processing data on web pages! I am learning Perl and would like to see an...
106
Greg Flowers
gregoryf@...
Nov 2, 1999 5:13 pm
This is a sample web form with links that display the perl source code. http://www.eng.auburn.edu/~gregoryf/projects/eop/form.html -- Greg Flowers Engineering...
107
Frank Hale
frankhale@...
Nov 7, 1999 1:28 am
How can I get a directory listing in Perl and then put the file names in an array? __________________________________________________ Do You Yahoo!? Bid and...
108
Jeff Boes
jboes@...
Nov 7, 1999 2:16 am
... Easy-- opendir(DIR, $dirname) or die "Can't open $dirname: $!"; while (defined($file = readdir(DIR))) { push @filelist, $file; } closedir(DIR); Taken...
109
Frank Hale
frankhale@...
Nov 7, 1999 2:23 am
... God I feel stupid I have this book. Thanks for the solution. __________________________________________________ Do You Yahoo!? Bid and sell for free at...
110
Frank Hale
frankhale@...
Nov 7, 1999 3:10 am
I want to execute a program from my CGI script but the webserver (Apache) will not execute the program. Okay this is what I am doing. I have a small script ...
111
Frank Hale
frankhale@...
Nov 7, 1999 3:32 am
After analysis of the logs I found out that it is executing my program but is terminating it too quickly. I need to fork the process and have it continue to...
112
Frank Hale
frankhale@...
Nov 12, 1999 3:03 pm
Okay I have 2 lists, one which stores URL's and another which stores the description of the URL's. I want to build up HTML code for these links but if I use...
113
Ahrendt, Robert
RAHRENDT@...
Nov 12, 1999 3:36 pm
#!/usr/bin/perl #@desc has already been loaded with you description #@link already has links for ($i=0;$i<$#desc;$i++){ print "<a...
114
Frank Hale
frankhale@...
Nov 12, 1999 5:32 pm
I have a script which strips the CRLF from Windows text files. This makes them look correct when viewing on Unix systems. The script only handles one file at a...
115
Silvia Albuquerque - ...
silviaza@...
Nov 12, 1999 6:21 pm
I am trying to test a Perl script at an environment with Active Perl and IIS (Option Pack 4.0). The syntax of the script is OK (I tested at the command line...
116
Dan Boger
dan@...
Nov 12, 1999 7:30 pm
you could just do the following: Replace : if ($ARGV[0]) { $commandlineparms = $ARGV[0]; &stripcr($commandlineparms); } ........ With: while...