Re: bash to perl for cgi

2014-06-17 Thread Goke Aruna
When you run the scripts from the cli, what do you get on your screen? What about Apache configuration is cgi script executable. What permission do you have on your script? Hope those questions can give you a guide. Regards On Jun 17, 2014 3:00 PM, "Jim Gibson" wrote: > > On Jun 17, 2014,

Re: Learning perl, understanding the basics.

2013-01-01 Thread Goke Aruna
Hello Singh, Chomp the $string and test again. Really sorry I cannot bottom post with BBerry phone. Regards On 12/29/12, Om Prakash Singh wrote: > Hi All, > > I am new to perl and while going through the chapters of Learning perl, > i just came through one excessive, while i was able to complete

Re: Help in Perl

2012-05-07 Thread Goke Aruna
Hello peter, Can you part of the xml file? On 5/5/12, S Peter wrote: > Hi > > I am S. Peter, a beginner in Perl program, working in XML files. I have a > xml files with the following coding. > > "$N$" > > I require a small script in perl to open any xml file and just copy and > write only the co

Re: About hashes and file processing

2011-11-22 Thread Goke Aruna
Hi, The key $port is not declared while spilting the lines from the file handle. Goke On 11/21/11, Shlomi Fish wrote: > Hello Raito, > > some comments on your code: > > On Sun, 20 Nov 2011 21:52:46 -0600 > Raito Garcia wrote: > >> Hi everybody >> >> Well I have some problems with my mind, becou

Re: Hanging out here

2011-07-24 Thread Goke Aruna
Nice to see enema in this list. Mekus ..are you based in lagos? Nice to share some thoughts about localizing perl community in Lagos Emeka wrote: >Hello All, > >I have been here for a long time, but I just read stuff. I have not mustered >enough energy to really check what Perl is all about u

Re: advangtes of Perl on various languages

2011-01-05 Thread Goke Aruna
Hi all, I think its time the real beauty of perl from the origin is restored. Although am not a programmer per see but I used only perl and bash for whatever I need in programming. I think all the so called disadvantages today could be ported to perl from other languages as Rasnita had raised, thi

Re: Need Regex for phone number

2010-09-24 Thread Goke Aruna
Ernest, Can you be a bit more detail into what you have and what you want? Thank On 9/23/10, lotug wrote: > I need regex code to identify 3108222400 phone number. > > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http

Re: Burnt Camel Club

2009-09-23 Thread Goke Aruna
I enjoyed writing my script in perl despite not being a computer programmer, I get my need done without much stress, hence no need to increase the mail volume on the list. Perl6 definitely will take me higher to programming. Perl is still the best for beginers at least you can write your novice s

Re: Perl projects for beginners

2009-09-07 Thread Goke Aruna
Lovely discussion, I suggest a newbie should flag himself as such and I am a completely newbie and am ready to work with anyone on a new project. I guess looking at an application written in another language and converting it to perl version of it worked for me. begginers need well experienced p

dynamically input fields to select from my table in the database

2008-09-28 Thread Goke Aruna
Can someone be of help; I have the code below, what i wanted this code to do is to dynamically create fields to select and again to dynamically subtitute the value of the given fields. my sms content is the source of my data and my table definition is as below: (Id int auto_increment primary ke

Re: Opening .dat file in perl

2006-10-20 Thread Goke Aruna
On 10/20/06, John W. Krahn <[EMAIL PROTECTED]> wrote: Goksie wrote: > Thanks all for the past help > > Can someone advice me on how i can open .dat file in perl script? open my $fh, '<', '00016367.DAT' or die "Cannot open '00016367.DAT' $!"; John -- Perl isn't a toolbox, but a small machine

Need your help to achieve this?

2006-10-10 Thread Goke Aruna
i want to process the attached file and i want to replace the $data[1] with equivalent month is strings.i have this code but it giving me errors... i only try the january case at least. #!c:/perl/bin/perl  use warnings ; use strict ; use POSIX 'strftime'; my $file = "c:/Perl/test.csv" ; { local ($\

can someone help out?

2006-10-01 Thread Goke Aruna
Dear all,I am just learning perl.i have the following code#!c:/perl/bin/perl -wuse warnings;use strict;my $file =  'C:/Perl/20060920_1.csv';open FH, $file or die $!; while(defined($file=)){  my @file = split/,/, $file;   print qq($file[0], $file[1], $file[10], $file[9], $file[12], $file[13]\n);}the