Created
April 22, 2009 10:22
-
-
Save anonymous/99702 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% newarray = [] %> | |
<% i=0 %> | |
<% for client in @clients %> | |
<% if client.clientID == 2 then %> | |
<% i+=1 %> | |
<% newarray[i] = client %> | |
<% end %> | |
<% end %> | |
<% newarray.each do |j| %> | |
<%= j.clientID %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment