lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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.