Re: Php perl?

2003-04-02 Thread Andres L. Figari
as a web server admin I like the way php is a lighter load on the server than perl is. Though some would disagree. I script little and use both ... - Original Message - From: Paul Kraus [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 31, 2003 5:12 PM Subject: Php perl?

Re: Learning Perl

2003-04-02 Thread Andres L. Figari
try linuxguruz.org sometime ... they have links to some tutorials and such, not just perl. - Original Message - From: Ohad Ohad [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:31 PM Subject: Learning Perl hey, I guess this question came up several time

Re: My script doesnt print out the output i like

2002-11-26 Thread Andres L. Figari
BlankI think that when you print \ it thinks it is an escape character, so you would need \\ check these out, I always have to look them up :) - Original Message - From: Juban, Nix To: '[EMAIL PROTECTED]' Sent: Tuesday, November 26, 2002 7:19 PM Subject: My script doesnt

Re: My script doesnt print out the output i like

2002-11-26 Thread Andres L. Figari
#!/usr/bin/perl -w use strict; my @e=qw(| \ - /); while (1) { foreach (@e) { print $_.\b; } } you needed a space between each character or it thought it was one word :) - Original Message - From: Juban, Nix [EMAIL PROTECTED] To: 'Andres L. Figari' [EMAIL PROTECTED

regex ( i suck at them)

2002-10-24 Thread Andres L. Figari
Hello, I am having toruble getting my regex to work :^( The file I'm parsing for headlines looks like this [*] headline 1 [*] headline 2 etc ... here is my perl attempt at stripping out the [*] part of each line. open (NEWS,$news_file) || die cannot open news.txt: newsfile = $news_file;

perl and SSI

2002-10-18 Thread Andres L. Figari
Hi, I am trying to do a 3 part form and all works well. However, I wanted to include SSI in my html and have the sever parse it. But alas, it's a .cgi not .shtml file Would any one be kind enough to tell me if what I want is possible (have youdone it?), and where a good way to read up how can

perl SSI

2002-10-18 Thread Andres L. Figari
Never mind :) Found this: http://www.cpan.org/authors/id/J/JA/JAMES/CGI-SSI-0.53.readme Thanks anyways ... Andres -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]