in reply to Re^2: Perl Security - Prevent SPAM
in thread Perl Security - Prevent SPAM

Have a read through the Tutorial material starting with the "Getting Started with Perl" series.

use strict; use warnings; are used to pick up errors, normally due to sloppy programming, like mistyping variable names and using variable before they are initialised. If there are errors of that sort in code you post here you are lible for a bit of a drubbing!


Perl is Huffman encoded by design.

Replies are listed 'Best First'.
Re^4: Perl Security - Prevent SPAM
by jazzwill (Initiate) on Oct 07, 2005 at 11:43 UTC
    Thanks to both of you for a big leap forward!