Re: CGI::Session file permission?

2005-03-29 Thread Steven Schubiger
rd-coded. Do we desire a patch? -- Steven Schubiger <[EMAIL PROTECTED]> -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: need logic and one error help

2005-03-27 Thread Steven Schubiger
On 28 Mar, T Raymond wrote: > #!/usr/bin/perl -w Refactor with use warnings instead of -w. -w leaks warnings to all scopes, i.e. external modules, whereas warnings keeps itself to the local block. See perldoc warnings therefore. > print header, What is header supposed to act on? If it's the m

Re: removing dupes from fetchrow_array()?

2005-03-23 Thread Steven Schubiger
On 24 Mar, Sara wrote: > What If I want to remove dupes from @row? like if $row[2] is similar in > multiple records, > only one entry should be showed, the duplicates should not appear in the > print. > Any ideas? #! /usr/bin/perl use strict; use warnings; { local $" = "\n"; my (@d