... 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@...
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? ...
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...
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...
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); ...
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'; ...
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@...
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 ... ...
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...
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?...
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@...
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@...
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@...> ...
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...
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;...
... 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 ...
... 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...
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...
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...
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...
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@...
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...
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: ...
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@...
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...