http://www.perlmonks.org?node_id=1019167


in reply to Re^2: CGI form results to XML
in thread CGI form results to XML

7stud I have a question

where do I put the code you suggested if I want these repeat HTML name and value fields (Birthdays) and all the rest of the name and value fields in the form

#! /usr/bin/perl use CGI "param"; print "Content-type: text/html\n\n"; print "&ltresponse&gt<BR/>"; foreach my $name ( param() ) { my $values = param ($name); print "&lt$name&gt<I>$values&lt/$name&gt</I><BR>"; } print "&lt/response&gt<BR/>";
my @birthdays = param ("birthday");

Replies are listed 'Best First'.
Re^4: CGI form results to XML
by Anonymous Monk on Feb 17, 2013 at 17:12 UTC
Re^4: CGI form results to XML
by Anonymous Monk on Feb 17, 2013 at 19:22 UTC

    Thanks for the links and the heads up