Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Form to run sub/function in plugin

Quote Reply
Form to run sub/function in plugin
How could I get an html form I have in one of my plugin subs to run another function withing the same plugin module? (I dont want to run an external cgi program to handle the form data)

sub blah {

print qq~ <form action="run my function with the values I pass it here"> ~;

}



sub myfunction {

$a = shift;
$b = shift; <values passed to my function from form

rest of function

}

Edit: Is the way to solve this with $IN->param('formfield_name') somehow?


http://www.iuni.com/...tware/web/index.html
Links Plugins

Last edited by:

Ian: Jun 10, 2002, 7:40 PM
Subject Author Views Date
Thread Form to run sub/function in plugin Ian 8912 Jun 10, 2002, 7:05 PM
Thread Re: [Ian] Form to run sub/function in plugin
Ian 8695 Jun 10, 2002, 8:46 PM
Thread Re: [Ian] Form to run sub/function in plugin
yogi 8743 Jun 10, 2002, 9:27 PM
Post Re: [yogi] Form to run sub/function in plugin
Ian 8631 Jun 10, 2002, 9:41 PM
Thread Re: [yogi] Form to run sub/function in plugin
Ian 8722 Jun 11, 2002, 1:13 AM
Thread Re: [Ian] Form to run sub/function in plugin
yogi 8689 Jun 11, 2002, 1:17 AM
Thread Re: [yogi] Form to run sub/function in plugin
Ian 8718 Jun 11, 2002, 1:20 AM
Thread Re: [Ian] Form to run sub/function in plugin
Paul 8708 Jun 11, 2002, 2:08 AM
Post Re: [Paul] Form to run sub/function in plugin
Ian 8724 Jun 11, 2002, 8:20 AM
Thread Re: [Ian] Form to run sub/function in plugin
Alex 8757 Jun 11, 2002, 5:37 PM
Post Re: [Alex] Form to run sub/function in plugin
Ian 8658 Jun 11, 2002, 5:42 PM
Thread Re: [Alex] Form to run sub/function in plugin
pugdog 8679 Jun 12, 2002, 8:32 AM
Thread Re: [pugdog] Form to run sub/function in plugin
Ian 8706 Jun 12, 2002, 8:37 AM
Thread Re: [Ian] Form to run sub/function in plugin
pugdog 8630 Jun 12, 2002, 8:45 AM
Post Re: [pugdog] Form to run sub/function in plugin
Ian 8698 Jun 12, 2002, 8:49 AM
Thread Re: [Alex] Form to run sub/function in plugin
Ian 8671 Jun 16, 2002, 1:26 PM
Thread Re: [Ian] Form to run sub/function in plugin
Alex 8629 Jun 17, 2002, 10:34 AM
Thread Re: [Alex] Form to run sub/function in plugin
Ian 8654 Jun 17, 2002, 10:46 AM
Thread Re: [Ian] Form to run sub/function in plugin
Alex 8631 Jun 17, 2002, 10:53 AM
Post Re: [Alex] Form to run sub/function in plugin
Ian 8580 Jun 17, 2002, 10:57 AM