Displaying 1 result from an estimated 1 matches for "end_view".
2006 Apr 04
5
getting the value of a form select
..._client")%>
<%= select(:client, :id, @clients) %>
<input type="submit" value="Change" />
<%= end_form_tag%>
content of the session: <%=h(session[:active_client])%> <br/>
content of the @Active_client: <%=h(@active_client)%>
------END_VIEW---------------
------ABOUT_THE_MODEL------
its a basic table, with ID as a auto increment int and name as a
varchar
-----THE OUTPUT OF ABOVE CODE---
something like: id1 or id2, id3, etc... I want to be able to extract the
name of the client but cant...
This thing is driving me nuts, especiall...