When I use CGI::XML it can create <cgi> </cgi> but when I put word eg "hai" it become <cgi><keywords>hai</keywords></cgi>. How <keywords> tag exist? I don't want <keywords> tag exist. How can i do that?
Furthermore, I want this code call input file and the whole text placed between this <cgi> </cgi> tag.Please help me.
#!/usr/bin/perl -w
use strict;
use CGI::XML;
my $q = new CGI::XML;
# save CGI variables to XML file
my $xml = $q->toXML("cgi");
print $xml;