[pmwiki-users] Input form, action handler

2007-02-04 Thread info
Hi How can I specify my own action handler by using either (:input :)? Is there also a possibility to specify my own action handler when using Fox forms? -- Any help is very much appreciated Regards, Mike ___ pmwiki-users mailing list

Re: [pmwiki-users] Input form, action handler

2007-02-04 Thread Hans
Sunday, February 4, 2007, 9:07:06 AM, info wrote: How can I specify my own action handler by using either (:input :)? use (:input hidden action myaction:) and define your action handler in php: $HandleActions['myaction']='MyActionHandler'; function MyActionHandler($pagename) { . Is

Re: [pmwiki-users] Input form, action handler

2007-02-04 Thread info
Quoting The Editor [EMAIL PROTECTED]: How can I specify my own action handler by using either (:input :)? use (:input hidden action myaction:) and define your action handler in php: $HandleActions['myaction']='MyActionHandler'; function MyActionHandler($pagename) { . Thanks very

Re: [pmwiki-users] Input form, action handler

2007-02-04 Thread Hans
Sunday, February 4, 2007, 9:31:49 PM, info wrote: I have one more question: At the end of MyActionHandler, how can I show the page again, where the action handler had been called from? Redirect($pagename); might do the trick. Hans ___

Re: [pmwiki-users] Input form, action handler

2007-02-04 Thread The Editor
On 2/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Quoting [EMAIL PROTECTED]: Quoting The Editor [EMAIL PROTECTED]: How can I specify my own action handler by using either (:input :)? use (:input hidden action myaction:) and define your action handler in php: