Re: help with perl setup...and upgrade

2004-02-24 Thread Wiggins d'Anconia
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

RE: help with perl setup...and upgrade

2004-02-23 Thread Ash Singh
--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

help with perl setup...and upgrade

2004-02-23 Thread Catriona Pure Scents
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

Re: Help With Perl

2002-06-12 Thread David vd Geer Inhuur tbv IPlib
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(/\

Help With Perl

2002-06-12 Thread LinkS On WeB
---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

Re: Re: i need help with Perl and HTML please

2001-10-23 Thread Mark Bergeron
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

Re: i need help with Perl and HTML please

2001-10-23 Thread _brian_d_foy
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

i need help with Perl and HTML please

2001-10-23 Thread Matthew Mangione
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