From: Pen Ttt on 31 May 2010 20:48 there is csv class showtable() function to change csv file into html table,can i make it in ruby? -- Posted via http://www.ruby-forum.com/.
From: Pen Ttt on 1 Jun 2010 06:44 how to do it ? -- Posted via http://www.ruby-forum.com/.
From: Pen Ttt on 2 Jun 2010 00:40 for example ,there is a csv file , two rows two coulums 2,3 4,5 how to write a ruby program with erb or cgi to get the html file: <table > <tr> <td>2</td> <td>3</td> </tr> <tr> <td>4</td> <td>5</td> </tr> </table> -- Posted via http://www.ruby-forum.com/.
From: Robert Klemme on 2 Jun 2010 01:31 On 02.06.2010 06:40, Pen Ttt wrote: > for example ,there is a csv file , two rows two coulums > 2ï¼3 > 4ï¼5 > > how to write a ruby program with erb or cgi > to get the html file: You open your favorite text editor or IDE and type in all the commands you need (i.e. as I indicated earlier) to get the program completed. This is a public forum denoted to the _discussion_ of Ruby topics - not a free implementation service. If you need introductory material I suggest you explicitly ask for it. Cheers robert -- remember.guy do |as, often| as.you_can - without end http://blog.rubybestpractices.com/
|
Pages: 1 Prev: Geometric Intersections (#233) Next: replacement method for 'mysql_escape_string |