Hi Please check the following code. I am the beginner in perl Actually there are some files in one directory say with extensions .txt and .doc I need to...
Hi I am new to CGI/perl scripts. Just now I have started creating a web site called http://www.abapmaster.com Currently I am writting CGI for login screen. My...
Hai Folks, Greetings to all of you..... My Name is S. Krishna Prasad and you can call me Krish. I'm an upcoming programmer (Beginner) in Perl. I want to learn...
Hai Folks, I need your help. How to access a remote system whose IP address is known and I want to modify the content of a particular file. For e.g. a file...
Which service(s) is the server running? If it has a telnet server then just use a telnet client. You will of course need access rights ! ... From: Krishna...
mount the file directory to a particular location. u can use "system" command in perl to mount a folder. after mount u access using normal file open code. ...
I have a very simular situation. Unfortunatly we do not have Array installed on our Unix system. Does anyone else have a solution? Thanks Scott Roth Ohio State...
... Scott> I have a very simular situation. Unfortunatly we do not have Array Scott> installed on our Unix system. Does anyone else have a solution? It's not...
I'm trying to read data from a FIFO file (from another application), Reading the data isn't the problem...I'm basically using $msg=<FIFO>. The problem is I...
Hi people, I am newbie to perl..i have a doubt... I want to create some 20 arrays using a 'for' loop something like @A1 @A2 @A3....@... this possible..?? i...
didn't clear with your requirement , in loop u can create n number of Arrays but u want to only creation of arrays or also want to store values in that array...
To Ravish.. Thanks for the concern.... i want to create arrays as well as store values in them...by splitting a variable....using 'split'. Rgds Harish ... ...
... Let me start with the error you got. I assume you're using a standard Perl 5 installation. In this case, assigning a value to an element of an array, which...
Does 'r' appear anywhere else than the location that you require? What exactly do you mean by "take" ? Is it copy all of the r's that are together at that...
Hai David, Greetings..... Say your filename containing the below data is "data.txt", your code should be like this. open(TXT,"data\.txt"); while(<TXT>) { if($_...
... Kishore> Hi all, Kishore> I've seen few scripts which have perl with -U option in the first line.. Kishore> #! /usr/local/bin/perl -U Kishore> can anyone...
Hi all, I've seen few scripts which have perl with -U option in the first line.. #! /usr/local/bin/perl -U can anyone please tell me what it is? -- KISHORE ...
Hello, I'm looking for a tried and true module for parsing the output of the uname command but have not been able to find one. My goal is to parse out the full...
I am trying to ignore the zero values in a specific column.... My source file looks like this 002-1241958-363521 B00087L1N 0 1 002-1241958-363521 B007KQWGO...
Hai All, my $infile ="input.txt"; my $outfile = "output.txt"; open FH1, "<$infile" or die "$!"; open FH2, ">$outfile" or die "$!"; while (my $line = <FH1>) { ...
I have a real stupid question. I have done this way back and can not for the life of me get it. I have a feedback form. The input code looks like: <input ...
Pragawati yang sedang naik daun, yang pernah bercinta dengan sapi (ref ... Cantik dan sensual (foto : http://www.kapanlagi.com/free/kinaryosih_0.html ). ...
Try this for that print "" line. print "<input type=hidden name=\"requiredname\" value=\"$in{'requiredname'}\">\n"; You don't need to make the name="" part a...
... redstarfcs> How to read meta tags whitout any perl module? "meta tags"? Like a web page meta tag? That's with HTML::HeadParser, or just a straight...
This should be obvious, but I'm stuck. If I run this as a standalone Perl program the regex works just as I expect it too. But if I run it from the CGI that...