i have an html file,
<html>
<body>
<form action="http://localhost/mypgm.py">
<input type="textbox" name="id" />
<input type="submit" />
</form>
</body>
</html>
In mypgm.py i have to process the value entered in the text-box and respond with an appropriate html.. how do i do that?
i mean how do i read the HTML parameter value inside python??
i have Python 2.3.4 along with cherrypy installed in my system.. any help is most welcomed.. thanks in advance..