On Tue, 24 Jun 2003, Jon Earle wrote:

> and confirm_delete has relevant lines, thus:
>
>     foreach (@$hashref{'users'}) {
>         print "<input type='hidden' name='users' value=\"$_->[0]\">\n";
>     }

Fixed it.  I changed the above three to:

        foreach (@{$hashref->{'users'}}) {
            print "<input type='hidden' name='users' value=\"$_\">\n";
        }

And she works!

Cheers!
Jon

-- 
Jon Earle

SAVE FARSCAPE http://www.savefarscape.com/
_______________________________________________
Perl-Unix-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to