Catriona Pure Scents wrote:
Hi guys,
many moons ago when I was a complete novice on perl...(only a little more advance now, but at least I have some scripts running and modifying them as need be..) I had a version of perl that ran on my pc as though it were a web servernot through the command
--Original Message-
From: Catriona Pure Scents [mailto:[EMAIL PROTECTED]
Sent: 24 February 2004 02:06 AM
To: [EMAIL PROTECTED]
Subject: help with perl setup...and upgrade
Hi guys,
many moons ago when I was a complete novice on perl...(only a little more
advance now, but at least I have some scripts
Hi guys,
many moons ago when I was a complete novice on perl...(only a little more advance now,
but at least I have some scripts running and modifying them as need be..) I had a
version of perl that ran on my pc as though it were a web servernot through the
command line.
Although it is gre
Ok, what is it that you want? It's hard to read when the code is split up over
the page.
Maybe it already answered your questions ??
#!/usr/local/bin/perl
#
$username = param('username');
open(USER, "< user.dat");
while () {
chomp;
($name, $site, $site_id, $des, $email, $pass) = split(/\
---CODE---
open(USER, "user.dat");
@user = ;
close(USER);
-END CODE-
Ok thats my textfile and this is how I usually read
through the lines
---CODE---
foreach $line (@user) {
chomp($line);
($name, $site, $site_id, $des, $email,
$pass) = split(/\|/,$line);
}
-EN
PDT 2001
Subject: Re: i need help with Perl and HTML please
>In article <002c01c15be0$ace0cc60$a000330a@watertown>,
>[EMAIL PROTECTED] (Matthew Mangione) wrote:
>
>> hey im really new to Perl and HTML and so far I've only learned the
>> basics of the Perl language. I
In article <002c01c15be0$ace0cc60$a000330a@watertown>,
[EMAIL PROTECTED] (Matthew Mangione) wrote:
> hey im really new to Perl and HTML and so far I've only learned the
> basics of the Perl language. I have been aquainted with C++ however
> and the language is coming to me pretty easily. My jo
hey im really new to Perl and HTML and so far I've only learned the basics of the Perl
language. I have been aquainted with C++ however and the language is coming to me
pretty easily. My job on my webteam that we have for our school is to be the one who
writes the CGI-scripts. So far i have bas