Now, please! don’t do this directly. The Vars() thing is a back-compat shim to perl4 days and you should always white-list and filter your user input, not blanket echo. But you can experiment with this–
use strict;
use warnings;
use CGI::Pretty ":standard";
use XML::Simple;
if ( my %params = CGI::Vars() )
{
$_ = [ split /\0/ ] for values %params;
print header("application/xml"),
XMLout(\%params);
}
else
{
print header(),
start_html(),
h1("OHAI: I CAN HAZ HTML FORMZ?"),
start_form();
print p(textfield("birthday")) for 1 .. 5;
print end_form(),
end_html();
}
__END__
perl pm-1019080 'birthday=1:356;birthday=2:365'
Content-Type: application/xml; charset=ISO-8859-1
<opt>
<birthday>1:356</birthday>
<birthday>2:365</birthday>
</opt>
You can replace CGI::Pretty with CGI. It’s just nicer to inspect with Pretty.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|