you may not need a forms processor for your application Mark.  the 
standard built-in PmWiki form directives will post to any PmWiki page. 
in that page you can access the form fields with a bit of custom markup 
that makes pages variables from the value of a form field.  for example, 
if you put this line in your config.ph:

   $FmtPV['$recentdays'] = "'".$_POST['recentdays']."'";

you can get the value of the form field 'recentdays' in your page using 
"{$recentdays}".  there is also an HttpVariables Cookbook recipe that 
makes all the $_POST/$_GET variables available as page variables.

fwiw, dan

_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to