これは私のスクリプトです
#!/usr/bin/env ruby
require 'sqlite3'
print "Content-type: text/html\r\n\r\n"
print "<html><body>Hello Stack Overflow<p></body></html>\r\n"
database = SQLite3::Database.new( "new.database" )
database.execute( "create table new_table (id INTEGER PRIMARY KEY, content TEXT);" )
database.execute( "insert into new_table (content) values ('this is a stack')")
database.execute( "insert into new_table (content) values ('this is overflow')")
rows = database.execute( "select * from new_table" )
p rows
これは機能しますが、行を 1 行で出力します。改行を追加したいのですが、方法がわかりません。htmlタグ
\nどちらも機能しません。
手伝ってくれますか?