From: Justin Collins Date: 2006-02-25T08:23:48+09:00 Subject: Re: select() misiek wrote: > I got for now this code html > > display > > I need to transfer this code to ruby > some like => > > <%= select("property", "location_id",Location.find(:all, :conditions > => "name != '' ").collect {|p| [p.name, p.id]}, { :include_blank => > false }) %> > > function above look for from database some data and put it into the > drop box fields > I need display only YES and NO and set them values 0 and 1 > > any ideas ? > Have you looked at erb (http://ruby-doc.org/stdlib/libdoc/erb/rdoc/index.html) or the CGI standard library (http://ruby-doc.org/stdlib/libdoc/cgi/rdoc/index.html)? Or do you mean parsing the HTML and making into that code? -Justin