Hello to everybody, i am an absolutely Perl Beginner, so I guess that this might be the right way to solve my problem :-) I wrote a program that reads an ascii...
I am working with data that come as yymmdd...... but I would like to have a script that will rewrite the data as yyyymmdd This script is sort of no quite...
Hi. I can't find information about how to redirect to other page. With PHP, I can do a header("Location: url.htm"). How I can do this with perl? Thanks Rafael...
Hello Charles, Thank you for your clear explanation, that really helped. Best of all I understand a lot more now, not everything, but a lot more :-) It took...
I am looking for a professional solution in order to have a "Refer/E-mail a Friend" script. This will have to be able to handle 100s of simultaneous e-mails...
Mike wrote: [snip] ... Not having to declare variables is a nice thing for little scripts and one liners. But for larger programs, use strict (and warnings) is...
Hello all once again, first off incase there was any doubt I want to say that I'm greatfull for all the help I had gotten to my last post. Now on to business,...
I'm not sure what you want to do, you have the values one per row in the file? Then the code below will work fine. If you have several values per line, then...
Hello, I want to command a little mecanic robot with is connected on the lpt port of my linux computer. i have to write directly on the LPT port , something...
There are several quite knowledgable Perl folks here, so I thought I would start a discussion on two topic that I am having trouble on getting the definition...
Hi! I'm a relative newcomer to Perl and I have a string array in one sub which I need to keep in scope so I can print it in a later sub. I do not know how to...
From: "Hans" <hansfong@...> ... No excuse needed, this is a group for newbies. Welcome. ... 1 #!/usr/bin/perl -w 2 # 3 open(FH,"456-459.html"); 4...
I'll answer the first question.... ... I'm guessing you just want the data displayed with the most recent at the top (and don't really care how it is logged). ...
It looks like the DBI and DBD packages together have an Oracle interface. use DBI; $dbh = DBI->connect("dbi:Oracle:$dbname", $user, $passwd); $dbh =...
Perl newbie here, so excuse my ignorance. I found the thread on removing the first 10 lines very interesting. I'm trying to do something with multi-line...
I wrote this sub while trying to learn how wantarray worked. It uses a hash of hashes to store and write a ini file. It should get you started. If you need...
I am using ActiveState39;s 5.6 distribution of Perl. I'm writing a Perl program to call InstallShield39;s PackageForTheWeb. Before I call PFTW, I have to modify...
Hey guys-- I'm a total beginner in Perl and was wondering how to implement a session (or a kind of). A friend told me that using cookies is a way. Does anyone...
... Does your cgi script have a use strict in it? Have your tried running the script as a non cgi? Have you looked in the server error logs? Regards Kul...
Hello once again all, I have been assigned a project at work that requires the following. Access a webpage and gather the data from it. From what I ...
... read a line and throw it away. Eg., open(DATA, "< $filename"); <DATA>; # throw first line away while ($line = <DATA>) # process rest of file ... If...
http://acssun.pstcc.cc.tn.us/~cchilder/cst2665/notes/ch7.html This link will take you to a page that has some info on how to take data from html web pages. ......
... From: "Hanson, Mark" <Mark.Hanson@...> ... Oh, sure!? Ask an easy question. :) Last time I checked there were about 580 members on this list; So...
I wanted to know if there is a way to take a string and start at a specific part of the string (line) and go to a specific part and then take off the leading...
Hi, I have a script that writes to a log file like this: open(LOG,">>$logfile"); print LOG "$tries | <b>$name</b> downloaded <b>$filename</b> $logline\n"; ...
Greetings, I'm trying to find an example of a script that will take the contents of a pipe delimited text flat file (potentially very large), and write it into...