debian man page for cgi::xml

Query: cgi::xml

OS: debian

Section: 3pm

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

XML(3pm)						User Contributed Perl Documentation						  XML(3pm)

NAME
CGI::XML - Perl extension for converting CGI.pm variables to/from XML
SYNOPSIS
use CGI::XML; $q = new CGI::XML; # convert CGI.pm variables to XML $xml = $q->toXML; $xml = $q->toXML($root); # convert XML to CGI.pm variables $q->toCGI($xml);
DESCRIPTION
The CGI::XML module converts CGI.pm variables to XML and vice versa. CGI::XML is a subclass of CGI.pm, so it reads the CGI variables just as CGI.pm would.
METHODS
$q = new CGI::XML creates a new instance of CGI::XML. You also have access to all of the methods in CGI.pm. $q->toXML([$root]) where $root is an optional parameter that specifies the root element. By default, toXML will not return a root element. $q->toCGI($xml) where $xml is the XML you would like to convert to CGI.pm parameters. Values in the XML will overwrite any existing values if they exist.
NOTE
CGI::XML does not currently handle multiple selections passed from HTML forms. This will be added in a future release.
AUTHOR
Jonathan Eisenzopf <eisen@pobox.com>
CONTRIBUTORS
David Black <dblack@candle.superlink.net>
SEE ALSO
perl(1), XML::Parser(3). perl v5.8.8 2004-12-05 XML(3pm)
Related Man Pages
template::plugin::cgi(3) - centos
cgi::application::plugin::dbiprofile::graph::svgtt(3pm) - debian
cgi::application::plugin::devpopup::query(3pm) - debian
template::xml(3pm) - debian
xml::writer::simple(3pm) - debian
Similar Topics in the Unix Linux Community
checkbox_group =&gt; CGI, Perl
Using AWK to separate data from a large XML file into multiple files
Extract TAG name and XPATH from XML file via shellscript
UNIX/PERL script to convert XML file to pipe delimited format
How can I extract XML block around matching search string?