return function (connection, req, args) connection:send("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nCache-Control: private, no-store\r\n\r\n") connection:send('Arguments') connection:send('') connection:send('

Arguments

') local form = [===[
First name:

Last name:

MaleFemale
]===] connection:send(form) connection:send('

Received the following values:

') connection:send("\n") connection:send('') end