lua-users home
lua-l archive

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



Yet I am not sure if I its possible to write CGI programs ONLY using
lua 5.0binary. Can you tell me?

I can tell: Yes, it is possible. With io.stdin, io.stdout and os.getenv, you have everything to write a cgi app. But you'll have to write your own support routines[1] or get borrowed from cgilua (or whatelse).

--rb


[1] Routines like (en|de)code url strings, read post/multipart data etc.