in reply to Re: is this script secured enough from internet attacks
in thread is this script secured enough from internet attacks
Could you explain you comment about ampersands?
I have never coded in perl 4, but have used perl5 since 1997 on AIX (perl5.00404).
I distinguish between the subroutines that I have written and those that are part of a "use Module" from core or CPAN.
For example ( without all the code needed to actually work ):
use BerkeleyDB; # CPAN module use Common; # My module my $cursor = $db->db_cursor(); # BerkeleyDB function my $var = &BD_Read($FH,$db,\$key,\$data); # my subroutine BD_Read
I use this to help me distinguish between the source of the code.
Is there something wrong with my personal preference?
"Well done is better than well said." - Benjamin Franklin
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: is this script secured enough from internet attacks
by Limbic~Region (Chancellor) on Jun 10, 2011 at 18:37 UTC | |
|
Re^3: is this script secured enough from internet attacks (&)
by tye (Sage) on Jun 10, 2011 at 20:58 UTC | |
by Jenda (Abbot) on Jun 11, 2011 at 01:13 UTC | |
by tye (Sage) on Jun 11, 2011 at 01:32 UTC | |
|
Re^3: is this script secured enough from internet attacks
by Anonymous Monk on Jun 10, 2011 at 17:41 UTC | |
|
Re^3: is this script secured enough from internet attacks
by ikegami (Patriarch) on Jun 10, 2011 at 18:28 UTC |