[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Read input parameters from HTML form?
- From: Gilles Ganault <gilles.ganault@...>
- Date: Fri, 02 May 2014 13:57:18 +0200
Hello
I'm playing with uwsgi to call Lua scripts through CGI on an ARM
appliance running Debian.
This works fine:
========== test.lua
print("Status: 200 OK")
print("Content-Type: text/plain\n")
print("Working fine")
==========
What lightweight solutions are there to read and validate input
parameters from HTML form through GET and POST?
Thank you.