i wrote script in view like this,
<% form_for :seq do |form| %>
<fieldset>
<legend>Source Information</legend>
<div class="form_row">
<label for="seq_id">User ID </label>
<%= form.text_field :user_id, :value => session
[:user_id],:size=>10 %>
</div>
</fieldset>
<% end %>
and i want hide this field to user but i want value= session[:user_id]
to insert database automatically
how i do?
thank you
Just as long as you know that users can EASILY change values you put
into hidden fields... so If they can mess up the system, somebody
will.
If you need to protect against that (and don't want to store this
stuff in the session which is where I'd put it) then ALSO include a
hash of the hidden value + a secret value to protect against changes.