Module:Sandbox/theleekycauldron

Revision as of 07:53, 5 April 2022 by imported>Theleekycauldron (idk what i'm doing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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