I have an HTML element in a form with name product[prod_name]
how do get access to its value in my action using params
I have an HTML element in a form with name product[prod_name]
how do get access to its value in my action using params
You can access the value like this:
params[:product][:prod_name]