On Tue, 2002-02-05 at 11:07, Robin Berjon wrote: > On Tuesday 05 February 2002 16:59, [EMAIL PROTECTED] wrote: > > my problem: > > lets says, I have a xml file and a xslt file which generates a html > > formular via axkit. when the user fills in the form and clicks on "submit" > > how can I acces the paramters (the form data)?? > > do I have to use the mod_perl api? > > Yes, you use the mod_perl api. It's easy really. Just grab a Apache->request > object abd you'll be done. In XSLT you can also use xsl:param, but in Perl > code the mod_perl API is really what's best.
AxKit uses Apache::Request (as opposed to Apache->request) to read form variables. mod_perl has a limitation where POST data can only be read once, so if you want to retrieve POST-submitted form data, you should use Apache::Request as well. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
