Ruby/CGI/CGI
Материал из Wiki.crossplatform.ru
Версия от 17:10, 26 мая 2010; (Обсуждение)
A Basic CGI Script
#!/usr/bin/ruby puts "Content-type: text/html\n\n" puts "<html><body>This is a test</body></html>" If you called this script test.cgi then visiting http://www.example.ru/test.cgi
Writing CGI Scripts
#!/usr/bin/ruby print "Contenttype: text/html\r\n\r\n" print "<html><body>Hello World! It"s #{Time.now}</body></html>\r\n"