ruby on rails - Encrypting Parameters across controllers -


I need to pass one parameter to another in one controller

I understand the parameters Must be highlighted in a gET url string.

What is the best way to encrypt the data, so no one can see what is actually happening in the string? Also, is there a way to pass it through POST or is my original understanding correct?

I have not used ROR, but in the web world, this problem is solved with sessions. You can store the parameters on the server by using sessions and avoid sending sensitive data with GET or POST (both are unsafe).

Looks like a great reading related to this.


Comments

Popular posts from this blog

oracle - The fastest way to check if some records in a database table? -

php - multilevel menu with multilevel array -

jQuery UI: Datepicker month format -