Search the web
Sign In
New User? Sign Up
perl-beginner · Perl Beginners Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 14974 - 15003 of 26371   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14974
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...
cairpre409
Offline Send Email
Jun 1, 2003
12:08 pm
14975
Thanks! Don ... From: "leonpeeters" <leonpeeters@...> To: <perl-beginner@yahoogroups.com> Sent: Sunday, June 01, 2003 12:14 AM Subject: Re: [PBML]...
Don Smith
login2001ca
Offline Send Email
Jun 1, 2003
4:26 pm
14976
You can use Mail::Sender for sending attachments. Vakeel. ... __________________________________ Do you Yahoo!? Yahoo! Calendar - Free online calendar with...
vakeel ahmad
vakgroup@...
Send Email
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@...
Send Email
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...
Rajesh
radhiilu
Offline Send Email
Jun 2, 2003
8:55 am
14979
From: Rajesh <radhiilu@...> Subject: [PBML] Urgent help needed for Perl function required for SNMP ... ...
Jenda Krynicky
jendaperl
Online Now Send Email
Jun 2, 2003
10:34 am
14980
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@...
Send Email
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...
nunleva
Offline Send Email
Jun 2, 2003
3:02 pm
14982
... 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@...
Send Email
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...
Kipp, James
nep_tuna
Offline Send Email
Jun 2, 2003
5:23 pm
14984
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...
Jonathan Dunn
jonathanclar...
Offline Send Email
Jun 2, 2003
5:40 pm
14985
... It amazes me how rare such tutorials are. Take a look at http://www.mcli.dist.maricopa.edu/authoring/studio/guidebook/flow.html Another:...
Kyle Hamar
kylehamar
Offline Send Email
Jun 2, 2003
7:58 pm
14986
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...
Electron One
thejoeshmoe
Online Now Send Email
Jun 2, 2003
8:39 pm
14987
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@...
Send Email
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....
Electron One
thejoeshmoe
Online Now Send Email
Jun 2, 2003
8:57 pm
14989
Associate file types. pl => Perl.exe On Mon, 2 Jun 2003 16:38:52 -0400, Rosenstein, Leon wrote ... Jonathan Dunn jon@... http://ephemeral.info...
Jonathan Dunn
jonathanclar...
Offline Send Email
Jun 2, 2003
8:59 pm
14990
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 ...
sravul
Offline Send Email
Jun 2, 2003
10:48 pm
14991
#!/usr/bin/perl open(INPT,"<test.txt"); while (<INPT>) { chomp; ($A,$B) = split (/ /,$_); if ($A eq 'A' && $B eq '35') { $group = 'A35'; } elsif ($A eq 'B' &&...
Nick Keeling
nickjk@...
Send Email
Jun 2, 2003
11:59 pm
14992
here's what I get: ##### script: #!/usr/local/bin/perl use CGI qw( :standard ) ; use CGI::Carp qw( fatalsToBrowser ) ; use strict ; my ( $category, %info ) ; ...
Jonathan Dunn
jonathanclar...
Offline Send Email
Jun 3, 2003
12:32 am
14993
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 =...
Joe
thejoeshmoe
Online Now Send Email
Jun 3, 2003
1:00 am
14994
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...
Jonathan Dunn
jonathanclar...
Offline Send Email
Jun 3, 2003
1:04 am
14995
perlwebmail does not work. i use perl 5.6.1/ apache 1.3.26. can some one help me...
annastewart@...
Send Email
Jun 3, 2003
1:13 am
14996
Doesnt matter. Preferably Null. But either way is ok with me. ... loop ... I ... file ... anybody ... you want for ... value...
Joe
thejoeshmoe
Online Now Send Email
Jun 3, 2003
1:13 am
14997
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 ) ; ...
Jonathan Dunn
jonathanclar...
Offline Send Email
Jun 3, 2003
1:47 am
14998
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...
Harri Klemetti
kelmetti
Offline Send Email
Jun 3, 2003
6:39 am
14999
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@...
Send Email
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...
Alan C.
acummingsus
Offline Send Email
Jun 3, 2003
6:46 am
15001
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...
Frankie
frankhauptle
Offline Send Email
Jun 3, 2003
8:49 am
15002
To: perl-beginner@yahoogroups.com From: Electron One <electron1@...> ... .pl must be mapped to perl.exe and added to the PATHEXT system ...
Jenda Krynicky
jendaperl
Online Now Send Email
Jun 3, 2003
10:22 am
15003
Hello everyone again!! First of all, i would like to thanks for your help!!! I have a problem with this code: @comentarios= ("//","#","/*","*/","*"); $nome_arq...
nunleva
Offline Send Email
Jun 3, 2003
10:44 am
Messages 14974 - 15003 of 26371   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help