<% if @main_singer_1 == @your_singer %>
<% if @main_drummer_1 == @your_drummer %>
i want to have this in a loop so i can change _1
Well you can do this with instance_variable_get but it sounds like you
could make things easier for your self by having arrays @main_singers
and @main_drummers
Rather than have your controller create all those individual variables,
have it pass the singers and drummers in arrays. Then you can loop
through the array w/code like this:
<% @main_singer.each do |singer| %>
<% if singer == @your_singer then %>
blah blah blah
<% end %>
<% end %>