local http = require("socket.http")
local body, code, headers, status = http.request("http://example.com/lua.php")
if body then
-- если есть ответ - пишем его
print(body)
else
-- если нет - скорее всего произошла какая-то ошибка. Выводим код ошибки.
print(code)
end