Why not adopt me?
NAME
CGI::Untaint::set - untaint sets of values
SYNOPSIS
use CGI::Untaint;
my $handler = CGI::Untaint->new($q->Vars);
$value = $handler->extract(-as_set => 'films' );
DESCRIPTION
Untaints an arrayref (as might be submitted by an HTML multiple select form field, or multiple selections from a checkbox group) as a comma separated string suitable for use as a value for a MySQL (maybe others?) SET column.
Values are validated against the CGI::Untaint::printable regex. To validate against a specific set of allowed values, subclass this package and provide a custom _untaint_re
method.
AUTHOR
David Baird, <cpan@riverside-cms.co.uk>
BUGS
Please report any bugs or feature requests to bug-cgi-untaint-set@rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CGI-Untaint-set. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2005 David Baird, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.