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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 13582 - 13611 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13582
... Use lynx. But it needs to be compiled with the execute cgi option. -- Greg Matheson Those who can do. Dr Bean's Penpal Pool Those who...
Greg Matheson
lang@...
Send Email
Feb 1, 2003
10:49 am
13583
lynx has a cgi option? Learn a new thing everyday I have been using it for about 5 years and never took the time to notice that. What are flags to do so? ...
Ben Maynard
liliafan
Offline Send Email
Feb 1, 2003
1:01 pm
13584
anyone know how to use the cgi script in paypal to set up a gate way for people to get a user name and password after payment? perl-beginner@yahoogroups.com...
Florence Chukwudebe
illnoizeprod...
Offline Send Email
Feb 1, 2003
5:47 pm
13585
Hi there, Ive got a POP script etc.. & using it to pop my email & retrieve the email text.. Anyway, Ive put each message into a @variable & looping through the...
gordon
gordonisnz
Online Now Send Email
Feb 1, 2003
6:24 pm
13586
Hello all I'm using sendmail and I've got it coded like this: open(MAIL, "|/usr/sbin/sendmail -oi -t ") || Error ('open', 'mail program'); select (MAIL); ...
picsian1 <imoq172@...>
picsian1
Offline Send Email
Feb 2, 2003
2:37 am
13587
... The "@megawebservers.com" might be coming from sendmail because someone has turned on the "always_add_domain" feature: ...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Feb 2, 2003
5:45 am
13588
hI, Can real beginners ask questions ? :) I want to browse a String char by char. I've used to do in C this way : for (int i, i<length(str), i++) str[i]='A'; ...
Jadi, SoftHome
jadijan
Offline Send Email
Feb 2, 2003
11:17 am
13589
Hello every one. A few days back I had inquired about printing to a printer. I still don't understand how to send output to the printer. Any help in this...
Krishnakant Mane
cssperl@...
Send Email
Feb 2, 2003
11:37 am
13590
Charles, Thank you for responding. You're dead-on!. You must include the domain at the end. Thanks again. gary ... ...
picsian1 <imoq172@...>
picsian1
Offline Send Email
Feb 2, 2003
6:30 pm
13591
Hello all This is pretty elementary but I can't seem to get it to work. Perhaps one of you eagle eyes can spot where I'm going wrong. I'm appending records to...
picsian1 <imoq172@...>
picsian1
Offline Send Email
Feb 2, 2003
6:38 pm
13592
... Worked for me: #!/usr/local/bin/perl my %postInputs = ( First => 'John', Last => 'Public', Address => '123 Easy Street', Email => 'JQ@...', ...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Feb 2, 2003
7:27 pm
13593
I have an array, and each element has a newline at the end. How can I get rid of the newline after each element without making a loop to rebuild each element?...
Dustin Smith AKA GIDu...
gidustin
Offline Send Email
Feb 2, 2003
10:47 pm
13594
duh, NM I got it. instead of @data = chomp(@data); it should just be chomp(@data); GIDustin -- My Home Page: http://www.gidustin.net Alternate:...
Dustin Smith AKA GIDu...
gidustin
Offline Send Email
Feb 2, 2003
10:50 pm
13595
Really, I think you should be looking at the format() and write() calls. It should be able to do something very close to what it sounds like you're after. ...
Nathan.Jeffrey@...
Send Email
Feb 2, 2003
11:33 pm
13596
That's probably the way I'd do it.... my $str = "foobarbaz"; my $i; for ( $i = 0, $i < length($str), $i++ ) { # NB, brackets added for clarity print(...
Nathan.Jeffrey@...
Send Email
Feb 2, 2003
11:38 pm
13597
Why isn't "substr()" function good enough? Teddy, Teddy's Center: http://teddy.fcc.ro/ Email: orasnita@... ... From: "Jadi, SoftHome" <jadi@...> ...
Octavian Rasnita
orasnita
Offline Send Email
Feb 3, 2003
2:47 am
13598
I am writing a simple rock paper scissors game in perl but i am having problems with the output. after i enter "rock for example my program just starts over...
grappling_machine <fa...
grappling_ma...
Offline Send Email
Feb 3, 2003
5:32 am
13599
Have you tried: chomp @array; Teddy, Teddy's Center: http://teddy.fcc.ro/ Email: orasnita@... ... From: "Dustin Smith AKA GIDustin" <dustin@...> ...
Octavian Rasnita
orasnita
Offline Send Email
Feb 3, 2003
6:04 am
13600
... No. substr is about the fastest way to do it. What are you trying to accomplish?...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Feb 3, 2003
6:05 am
13601
Thats a good question... I would imagine that chomp @array would not have the desired result. so I think this: foreach my $item (@array) { $item = chomp $item;...
Franki
frankhauptle
Offline Send Email
Feb 3, 2003
6:11 am
13602
... Try testing this part with: #!/usr/bin/perl print rand() * 3, "\n" for 1 .. 10; __END__ It is unlikely you will get any integers. Now try: #!/usr/bin/perl ...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Feb 3, 2003
6:21 am
13603
... when you use rand, the result will be a floating point number ( say 1.857493 ) so you have to use "int" : my $target = int (rand()*3); so "int ( 1.857493...
Jadi, SoftHome
jadijan
Offline Send Email
Feb 3, 2003
6:29 am
13604
Charles, Thank you for wanting to help again. Your response did help a lot. I spent at least 4 hrs looking at that one before posting it. Then after your...
picsian1 <imoq172@...>
picsian1
Offline Send Email
Feb 3, 2003
7:36 am
13605
can anyone change code below a bit? what this does to a plain text file is overwrite all the characters with backslashes. it does not at present overwrite any...
diheptal <diheptal@...>
diheptal
Offline Send Email
Feb 3, 2003
2:34 pm
13606
From: "Octavian Rasnita" <orasnita@...> ... What version of DBI do you have? This DOES look like a problem in DBI, but I think this has already been solved...
Jenda Krynicky
jendaperl
Online Now Send Email
Feb 3, 2003
2:48 pm
13607
Hi, I'm trying to install the DB_File module on a hp-ux 11.0 system with perl 5.6.1 on it. I've tried both swinstal and MCPAN and it gets to the make step and...
David Driscoll
ddriscoll@...
Send Email
Feb 3, 2003
2:56 pm
13608
From: David Driscoll <ddriscoll@...> ... You are supposed to read the README file from the DB_File archive :-) It will tell you to update Config.in to...
Jenda Krynicky
jendaperl
Online Now Send Email
Feb 3, 2003
3:55 pm
13609
Any one have any ideas why one of my forms works, yet the other one after several attempts to tidy up @referrers, doesn't want to work? the working form is: ...
carpetony <carpetony@...
carpetony
Offline Send Email
Feb 3, 2003
4:10 pm
13610
one of my module has the following code... $sth = $dbh->prepare("select * from email where user_id=\'$userid\' and pros_email=\'$email\'") || return...
prakash
prakash@...
Send Email
Feb 3, 2003
6:37 pm
13611
I am trying to get my variables $cpuscore and $userscore to print but it keeps printing them literally as strings and not variables. Any help would be...
grappling_machine <fa...
grappling_ma...
Offline Send Email
Feb 3, 2003
8:26 pm
Messages 13582 - 13611 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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