<form action=SCRIPT(paramaters) ..>
4 Mar
2002
4 Mar
'02
1:42 p.m.
How do I code the following <form action=SCRIPT(paramaters) ...> </form> Sound trivial, and silly but I can not seem to figure out the syntax. Chris
4 Mar
4 Mar
8:32 p.m.
New subject: [Zope] <form action=SCRIPT(paramaters) ..>
On Mon, 4 Mar 2002, chrisf wrote:
How do I code the following
<form action=SCRIPT(paramaters) ...>
</form>
<form action="script.py"> <input type="hidden" name="foo" value="bar"> <input type="text" name="baz"> </form> will submit to the script "script.py" with foo=bar and baz=_whatever_ in the REQUEST.form object. So, in script.py: foo = context.REQUEST.form['foo'] baz = context.REQUEST.form['baz'] ... -- Joel BURTON | joel@joelburton.com | joelburton.com | aim: wjoelburton Independent Knowledge Management Consultant
8799
Age (days ago)
8799
Last active (days ago)
1 comments
2 participants
participants (2)
-
chrisf -
Joel Burton