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


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

++ for being able to decipher that post.

Replies are listed 'Best First'.
Re^3: CGI form results to XML
by spencerr1 (Novice) on Feb 17, 2013 at 17:04 UTC

    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");

      Thanks for the links and the heads up

Re^3: CGI form results to XML
by spencerr1 (Novice) on Feb 17, 2013 at 02:54 UTC

    Ha Ha

    I knew you were going to say that. I could not find the button to upload the code

    I knew you were going to say that