It's just bad formatting. Just change 'on' to 'On' and vice versa for 'off'.
No need to delete any lines.
-Original Message-
From: Paul Cotter [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 31, 2001 4:28 PM
To: [EMAIL PROTECTED]
Subject: unknown CPAN variables
Can someone explain the fo
I had this problem last week.
Delete the logfile before running it from the webserver. The webserver will
recreate the file with the proper permissions.
-Original Message-
From: Me [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 31, 2001 3:35 PM
To: Nichole Bialczyk; [EMAIL PROTECTED]
Subj
Oddly enough, this might help:
http://www.guru4hire.nl/asp2pl/
A VBScript ASP to Perl CGI converter. I don't work for these people, didn't
write code for them, have no relation &c. Also, careful as it's an "online
service".
I also looked on search.cpan.org to no avail, although there are a few
Yep,caught that myself a few minutes -after- sending email. Apologies.
-Original Message-
From: Jeff Pinyan [mailto:[EMAIL PROTECTED]]
On May 30, Jeffrey Goff said:
>It's a shortcut for assigning words to an array. That statement would
return
>an array that looks roughl
It's a shortcut for assigning words to an array. That statement would return
an array that looks roughly like this:
('"stuff",', '"more stuff",', '"even more stuff"') # Note the double quotes.
Something like ("stuff","more stuff","even more stuff"); # was likely
intended, without qw().
Search f
Judging by the loop you seem to want, something like
$data="Hey\nThis is\nmultiline";
@everyline = split(/\n/,$data);
is probably more appropriate for your purposes. However the original
comments re: $data never being modified still hold true.
-Original Message-
From: Brent Michalski [m