Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perl-beginner · Perl Beginners Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 3765
  • Category: Perl
  • Founded: Aug 2, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 8005 - 8034 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
8005 Charles K. Clarkson
charlesclarkson Send Email
Jan 1, 2002
4:13 pm
... Be careful what you wish for! ... I edited Don's script for clarity. Mainly, I lined up some of the comments and added some spacing. I did change the order...
8006 malaikat@...
utomonline Send Email
Jan 1, 2002
7:18 pm
Hi, How to include a file within script? Say I have a file called "top.txt" in the root dir, and I want the perl script to display the pure texts contents of...
8007 Don Smith
login2001ca Send Email
Jan 1, 2002
9:42 pm
Charles, Once again, I thank you for the lesson. Sometimes I feel like I'm walking through thick mud. I'm addicted to this message board but what I'm learning...
8008 Charles K. Clarkson
charlesclarkson Send Email
Jan 1, 2002
10:08 pm
Malai <malaikat@...> ... my $file_name = '/top.txt&#39;; open FH, $file_name or die "$file_name: $!"; while ( <FH> ) { print; } close FH; The 'while&#39; block...
8009 Onyx Web
onyxweb13@... Send Email
Jan 2, 2002
7:32 am
I need help with sending a form to a thankyou.html page while still submitting the info to an email. Currently I am using form2mail in this way: <form...
8010 Leon
eventualdeath Send Email
Jan 2, 2002
7:54 am
Hi Members, My question :- Could members please help me to understand why $b is not incremented within the while loop below. Just a comment :- Originally, I...
8011 coo_t2 Send Email Jan 2, 2002
7:57 am
I'd probably try redirecting right from inside the cgi script. Try putting this line in the cgi script below the code that processes the form: print "Location:...
8012 Oliver Manickum
oliver@... Send Email
Jan 2, 2002
8:03 am
When you use the 'my' operator, you define your variable, resetting any data that was in it. try changing your code logic to suit ur need. - Olly ... From:...
8013 webmonyet Send Email Jan 2, 2002
8:19 am
I got Perl 5.6 installed on my Sun boxes. After which I tried to install the Tk module. I first had the tar file copied to /my/perldirectory/lib/site_perl/. I...
8014 chrisdingman Send Email Jan 2, 2002
8:22 am
Try makefile.pl in all lowercase. UNIX is very picky when it comes to case in filenames... Chris...
8015 webmonyet Send Email Jan 2, 2002
8:40 am
Hi Chris, Does the makefile.pl comes with the Tk tarball (as mentioned, it doesn't)? Or do I have to create a new makefile.pl if it does not exist? If I have...
8016 Leon
eventualdeath Send Email
Jan 2, 2002
10:17 am
... _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com...
8017 raezorblaedz Send Email Jan 2, 2002
2:12 pm
Adrian, I have turned on strict, now I am getting compilation errors. I assume that is exactly what I should see. Now, what do I do to resolve the "requires...
8018 chrisdingman Send Email Jan 2, 2002
2:59 pm
makefile.pl should, however makefile.PL does not...in UNIX those are two completely different files. Chris ... comes...
8019 Greg Webster
kickstart70 Send Email
Jan 2, 2002
3:35 pm
This just mean you need to declare the variable names [using "my ($variable1, $variable2);" would be easiest here for you.]. It's a way for use strict to make...
8020 Franki
frankieh@... Send Email
Jan 2, 2002
3:40 pm
Hi everyone, hope you all had a wonderful new years.... I have a question that isnt' a code question per see... I want to start using strict on everything, but...
8021 Charles K. Clarkson
charlesclarkson Send Email
Jan 2, 2002
3:50 pm
"Leon" <eventualdeath@...> ... $a and $b are special global variables in perl. They are used in 'sort'. They can also be referred to as $main::a and...
8022 Charles K. Clarkson
charlesclarkson Send Email
Jan 2, 2002
4:13 pm
"Franki" <frankieh@...> ... Let's correct something here: my $file_name = 'in.txt&#39;; sub hello_world { print $file_name; } will print: in.txt ...
8023 raezorblaedz Send Email Jan 2, 2002
4:43 pm
Sorry to sound so ignorant, but what I believe you just said was the following: I declared: $MyOutFile = "/tmp/harvey@..."; but using...
8024 Franki
frankieh@... Send Email
Jan 2, 2002
5:24 pm
I remember writing a space invaders clone for my Commodore64 with sprites sound the whole thing, 10,000 lines of basic.. I was very impressed with myself back...
8025 don94579 Send Email Jan 2, 2002
5:28 pm
After I develop a script on my PC under NT4.0, I will want to copy it out to a production server and run it there. I don't want to install Perl to the...
8026 Franki
frankieh@... Send Email
Jan 2, 2002
5:33 pm
Just thougth of a related question.. What do you do, if you have a sub that opens a file and assigns a value from that file to a variable..(purely...
8027 Franki
frankieh@... Send Email
Jan 2, 2002
5:42 pm
how complicated is your script? I wondered about this myself once, and I found alot of stuff for converting perl to .bat files that don't require perl to be...
8028 don94579 Send Email Jan 2, 2002
6:15 pm
What is windows scripting? Thanks, Don ... converting ... fance your ... web server ... to use ... will run on ... webserver, ... (since thats ... particularly...
8029 Greg Webster
kickstart70 Send Email
Jan 2, 2002
6:18 pm
... No worries, we all have to learn in this world. Plus, this wouldn't be called the Perl-Beginners Mailing List if we weren't able to answer questions. :) ...
8030 raezorblaedz Send Email Jan 2, 2002
6:26 pm
Wow. That makes perfect sense. Why don't you revise some of the crappy (I'm a hardcore coder) documentation, and write books for O'Reilly. Even their Beginning...
8031 don94579 Send Email Jan 2, 2002
6:36 pm
It's not complicated. It's not CGI. It's going to be a script that runs an infinite loop checking the date and time of a file on 7 servers and displaying the...
8032 Greg Webster
kickstart70 Send Email
Jan 2, 2002
6:38 pm
... I've actually thought about this quite a bit. I'm currently working on a sci-fi novel (yeah, seriously), but maybe I should take a break and write some...
8033 raezorblaedz Send Email Jan 2, 2002
7:37 pm
... my ($Username = $field{'username&#39;}, $Password = $field{'password&#39;}, $PartialPartNumber = $field{'partialnmbrsrch&#39;}, $MyOutFile, $message, $found_err,...
8034 Charles K. Clarkson
charlesclarkson Send Email
Jan 2, 2002
8:50 pm
"raezorblaedz&quot; <raezorblaedz@...> ... Try rewriting line 23 as: my $Username = $field{'username&#39;}; my $Password = $field{'password&#39;}; my...
Messages 8005 - 8034 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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