Documentation for this module may be created at Module:Sandbox/theleekycauldron/doc

local function test()
  local http = require("socket.http")

  local body, code, headers, status = http.request("http://example.com/lua.php")

  if body then
    return body
  else
    return code
  end
end