cgi parameters

Walter Hofmann walterhnospam at gmx.de
Thu Dec 28 11:08:23 EST 2000


On Thu, 28 Dec 2000 15:19:04 +0100, QdlatY <qdlaty at wielun.dhs.org> wrote:
>
>Hello!
>
>I need to pass index parameter to script executed by post method (via
>form)
>
>I'm counting on Your help :)

You need hidden parameters:

<form method="POST" action="/cgi-bin/control.py">
...
<input name="hill" value="rctiny" type="hidden">
<input name="action" value="submit" type="hidden">
...
</form>

Walter



More information about the Python-list mailing list