Mirek Rusin wrote: > Greetz! > > How to render .rhtml page from a Ruby .cgi file? > I mean, there are: > > --- index.cgi --- > #!/usr/bin/ruby > puts "Content-type: text/html\n" > WHAT_GOES_HERE? 'mypage.rhtml' > ----------------- > template = File.open( "mypage.rhtml", "r" ) { |f| f.read } mypage = ERb.new( template ) result = mypage.result puts result See: http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/index.html -- Posted via http://www.ruby-forum.com/.