... Standard disclaimer applies (still somewhat if not quite a lot of a Noob myself) perldoc -f system is a way to get something executed. But though I...
I have a program which used a library I wrote. I am using these two lines in my program: unshift( @INC, "." ); require "Colors.pl"; In the current directory I...
... Thanks. We can always use more people answering questions. ... That should be '$record39;. You accidentally left that off the "$" from the original post. ......
... I'll take a stab at this: ##record##is the record you are currently looking at ##=~##is the comparison or assignment operator when using ##regular...
Here are a few subjects I've seen in the list lately: From beginners@... "Could anyone please answer a simple PERL question." ? "Cool construct" ? "A...
Hi, Below please find a regex, I've looked in my books but hoen't seen anything similiar. Is it valid? Could none explain or link me to info that covers it?...
... [snip] ... Here's your main problem. "page size" and "requested page" are hard coded. The script does not process these fields from the url. my $pagesize =...
19241
鄒文雄(We...
wstzou@...
Jul 11, 2004 8:42 am
Dear all: I'd like to pass a hast by reference. please see my code: #### motif_input(\@file2, \%GO); sub motif_input { use strict; use warnings; my ($file,...
I haven't been through your code line by line, but a first thought is that it may be more practical to use the SQL limit parameter to obtain your listings. ...
... That is more clearly written as die "$0 requires some money!\n" if @ARGV == 0; Using $#arrayname should be done sparingly. ... This line has a syntax...
I don't think you even need and / qw( A B C D etc) should work ... From: Gordon Stewart [mailto:gordonisnz@...] Sent: Sat 10/07/2004 09:58 To:...
19237
Gordon Stewart
gordonisnz@...
Jul 10, 2004 8:58 am
On Fri, 9 Jul 2004 18:13:10 -0700, Frank D. Gunseor ... Shouldnt there be a closing / aswell ? ( I dont use QW much..) -- G Stewart Now the Feds are urging...
I think you're missing a "(": @letter=qw/A B C D E F G H I J); should be: @letter=qw/(A B C D E F G H I J); ... From: kloutot [mailto:kathryntate@...] ...
I told my instructor that I was accused of cheating and I would like you guys to know that he supports any outside help, "as long as we are learning". With...
use Cwd; my $dir = getcwd; ... __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! ...
19233
Luca Ferrari
fluca1978@...
Jul 9, 2004 4:49 pm
Hi, I'm writing a few perl scripts which must deal with files and directories. I've found the functions readdir, opendir, etc. that allows the script to deal...
Hi everybody, I'm stuck trying to output multiple search results. I wrote this code and it outputs correctly the number of results pages as links, but it shows...
Oops! I wasn't aware this was an ILLEGAL copy - i thought it was a way to hook people on buying the 'hard copy' version... sorry / allan ... 777 0095 ... ...
Need several People with the following skills ASAP..... Perl/CGI PHP ASP C/C++ Java JSP Javascript XML Cold Fusion Flash Python Visual Basic .NET Script...
... Go to the link above and then click on the 'Submit Query' button. Don't fill anything in, just click the button with blank fields. I received an error...
I upgraded perl on two machines to 5.8.4. However, modules seem to be only loaded into the directory of the previous perl version. Webmin also lists the old...
... Thanks for the response. But I got a little confused with your statement. What you are saying is did work for you? I filled out the form to see if it...
I think the problem may arise when you convert $rawseq to $goodseq. Maybe some "junk-characters" remain in the string, so that they work like a... frame-shift...
Hello all. I am still a pretty green Perl user, but have a few functional programs under my belt. I am using perl to crunch DNA sequences for my lab. We have...
19224
Jeff Eggen
jeggen@...
Jul 7, 2004 7:18 pm
... [snip] ... Is this cgi, or mod_perl? If it's mod_perl, you have to rebuild it for the new Perl install. If it's cgi, check the path of the shebang line in...
I recently upgraded to 5.8.4 from 5.8.3 and have been running into problems with upgrading perl modules. I have installed gd-2.0.27 and GD-2.12 from source...
... Pressing the 'Submit Query' button starts the program at /cgi-bin/guestbook.pl. Pressing that button with an empty form seems to indicate that the program ...
http://www.searcydigest.com/guestbook/addguest.html here is the link to my guest book i'm trying to do. I am having trouble figuring out how to get it to load...
Try adding: print "Content-type: text/html\n\n"; before your other print statements. Perl is printing it out properly, however the browser needs MIME headers...