Re: input validation and persistency module for (mod_perl) web apps?

2005-11-05 Thread John Doe
Marcello am Donnerstag, 3. November 2005 15.57: > John Doe ha scritto: > > Dear list members > > [...] > > Some of the tasks always to be solved in an interactive webapp: > > > > a) validate/sanitize user input Hi Marcello, Thanks much for your answer to my unclear question. > Data::FormValidato

array of hashrefs

2005-11-05 Thread Octavian Rasnita
Hi, I have tried the following test program: my @array = ( {a => 'aaa', b => 'bbb',}, {a => 'ala', b => 'bala',}, ); my @array2 = @array; $array2[0]{a} = 'nanan'; push(@array2, 'test'); use Data::Dumper; print Dumper [EMAIL PROTECTED]; The result was: $VAR1 = [ { 'a' =>

Re: array of hashrefs

2005-11-05 Thread John Doe
Octavian Rasnita am Samstag, 5. November 2005 16.44: > Hi, Hi > I have tried the following test program: > > my @array = ( > {a => 'aaa', b => 'bbb',}, > {a => 'ala', b => 'bala',}, > ); > > my @array2 = @array; > [...] > but I don't know how to > create a second array with all the elements of

Re: array of hashrefs

2005-11-05 Thread Xavier Noria
On Nov 5, 2005, at 16:44, Octavian Rasnita wrote: I know why modifying an element from a hashref from the second array modifies that element in the first array and why the new pushed element in the second array is not shown in the first array, but I don't know how to create a second array wi