using mg.read() only for POST requests

This commit is contained in:
Sergey Lyubka 2013-07-16 07:53:08 +01:00
parent 30f71a8bc4
commit e645b33b6c

View File

@ -24,7 +24,13 @@ Content-Type: text/html
<form method="POST" ><input type="text" name="t1"/><input type="submit"></form>
<pre>
POST data: [<? mg.write(mg.read())?>]
POST data: [<?
local post_data = ''
if mg.request_info.request_method == 'POST' then
post_data = mg.read()
end
mg.write(post_data)
?>]
request method: [<? mg.write(mg.request_info.request_method) ?>]
IP/port: [<? mg.write(mg.request_info.remote_ip, ':',
mg.request_info.remote_port) ?>]