Home | History | Annotate | Download | only in httpd

Lines Matching refs:print

31 	-- output html using httpd.print()
32 -- you can also use print() and io.write() but they will not work with SSL
33 httpd.print([[
42 httpd.print('module version: ' .. httpd._VERSION .. '<br>')
44 httpd.print('<h2>Server Environment</h2>')
45 -- print the list of "environment" variables
47 httpd.print(escape_html(k) .. '=' .. escape_html(v) .. '<br/>')
50 httpd.print('<h2>Request Headers</h2>')
52 httpd.print(escape_html(k) .. '=' .. escape_html(v) .. '<br/>')
56 httpd.print('<h2>Query Variables</h2>')
58 httpd.print(escape_html(k) .. '=' .. escape_html(v) .. '<br/>')
62 httpd.print('<h2>Form Test</h2>')
64 httpd.print([[
71 httpd.print([[
83 httpd.print('<h2>Form Variables</h2>')
86 httpd.print('Content-type: ' .. env.CONTENT_TYPE .. '<br>')
90 httpd.print(escape_html(k) .. '=' .. escape_html(v) .. '<br/>')
93 httpd.print('No values')