The project: Create a web tool where "News" items (policy changes) can be view, edited, inserted, searched (searching can come later). Also a text based...
You can use Mail::Sender for sending attachments. Vakeel. ... __________________________________ Do you Yahoo!? Yahoo! Calendar - Free online calendar with...
vakeel ahmad
vakgroup@...
Jun 2, 2003 5:16 am
14977
Dear All Is there any module in perl for fetching mails from any server, just like www.mail2web.com does. With Regards Vakeel. ...
vakeel ahmad
vakgroup@...
Jun 2, 2003 5:22 am
14978
Hi, I want to get my network traffic details from SNMP.I want to write perl script for this.I want some perl function which should get my values .I have the...
I am trying to design a flowchat for a website proposal presentation I have to do. I usually dont draw flowcharts for the Perl/CGI work I do, and, usually, my...
Will
self_deprecated@...
Jun 2, 2003 10:36 am
14981
Hello everyone!! I would like to know, and sorry if this is a stupid question, how can i pass two arrays into a function!!! I made one code that has two...
... Hi. ... Long story short: pass references to your arrays and hashes when passing multiple arrays and / or hashes to a subroutine. Long story: read the...
Jeff Eggen
jeggen@...
Jun 2, 2003 3:40 pm
14983
pass them as references. goes like this: yoursub(\@arref, \@arref2); sub getem { my ($aref) = shift; my ($aref2) = shift; #..deref them and do stuff for $i...
On Mon, 2 Jun 2003 13:23:34 -0400, Kipp, James wrote ... Or to minimize dealing with the refs, just deref inside the sub: yoursub(\@array1, \@array2); sub...
Does anybody know how to run Perl on a Win32 system without using the Perl command? So instead of doing, C:>perl PerlCode.pl File1.txt File2.txt I would do...
If perl is in the path on xp it will run just by calling the file name. Cheers, Leon ... From: Electron One [mailto:electron1@...] Sent: Monday, June...
Rosenstein, Leon
LRosenstein@...
Jun 2, 2003 8:40 pm
14988
I am using Win2K on one computer, and NT on another. Doesn't work like that on either....
I have a file that has the following content: A 35 rose flower rose flower rose bud lavender flower lavender leaf lavender flower B 36 Lotus flower lotus bud ...
here's what I get: ##### script: #!/usr/local/bin/perl use CGI qw( :standard ) ; use CGI::Carp qw( fatalsToBrowser ) ; use strict ; my ( $category, %info ) ; ...
What if I wanted to read from two files, and wanted the while loop to continue during the length of the LONGEST file. For example, while (defined($Gold =...
On Tue, 03 Jun 2003 01:00:30 -0000, Joe wrote ... If you're still reading from the longer file, then what value do you want for the variable which was being...
On Tue, 03 Jun 2003 01:13:35 -0000, Joe wrote ... Hows this: ### script #!/usr/local/bin/perl use CGI qw( :standard ) ; use CGI::Carp qw( fatalsToBrowser ) ; ...
Hi, Upgraded my Intranet server to Windows 2003 and now the Perl script for finding out user name: $usr = $ENV{'REMOTE_USER'}; no longer works - no value...
Hi all : I see these lines at the very beginning lines of a perl program. Could anyone explain what this is doing ?? eval '(exit $?0)' && eval 'exec perl...
T.S. Ravi Shankar
Ravi.Shankar@...
Jun 3, 2003 6:42 am
15000
... perldoc runperl perldoc pl2bat then, don't even need 2 use the .pl extension ie c:\PerlCode On a win (Activestate Perl) machine, ever look at all of the...
Windows 2003 is Microsofts first real attempt at security... Someone told them that making you enable everything you want and not enabling it out of the box is...
Hello everyone again!! First of all, i would like to thanks for your help!!! I have a problem with this code: @comentarios= ("//","#","/*","*/","*"); $nome_arq...