page3r.lp 366 B

1234567891011121314151617181920
  1. HTTP/1.0 200 OK
  2. Content-Type: text/html
  3. <html><body>
  4. <p>This is a test page of mg.include in a Lua server page, served by the
  5. <a href="https://github.com/civetweb/civetweb/">CivetWeb web server</a>.
  6. </p><p>
  7. <?
  8. script = "page2.lp"
  9. mg.write("Output of " .. script .. " (path type: \"rel\"):\n")
  10. ?>
  11. </p><p>
  12. <?
  13. mg.include(script, "rel")
  14. ?>
  15. </p>
  16. </body></html>