below is my ruby script
require "rubygems"
require 'csv'
a = Array.new
CSV.foreach("p34n234.csv") do |row|
a << row
end
print a
What i want to do is now at the end I want to generate a html file and print array to it.
I hope i made sense.
Thanks
P.S I just want to show the array in a .html file. Nothing fancy here:)