> > <div id="content"> > <div><textarea name="source" cols="60" rows="10"></textarea></div> > <div><input type="submit" value="translate"></div> > <div><textarea name="target" cols="60" rows="10"></textarea></div> > </form> > </div>
You need to specify <form method="POST">. (you have </form>, but <form> is missing in your example). If you go through the web.py tutorial[1], you will find an example using POST. [1]: http://webpy.org/tutorial2.en --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
