I have a feedback form in my Rails application. The feedback form requires initializing of the @support variable, and it should be visible on every page. The initialization is v
A global variable starts with the dollard sign '$' like :
$support = Support.new(:id => 1)
However, global variables is bad :-) You should read this post by "Simone Carletti".