Advertisement
snarfblat

Untitled

Apr 22nd, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfset r = Randomize()> (copy the line from the previous one, I don't feel like typing the whole thing again)
  2. <cfset moodList = ValueList(queryname.mood)>
  3. <cfset itemList = "">
  4.  
  5. <cfloop condition="ListLen(itemList) lt 8">
  6.     <cfset pos = Int(RandRange(1, ListLen(moodList)))>
  7.  
  8.     <cfif NOT ListContains(itemList, ListGetAt(moodlist, pos))>
  9.         <cfset itemList = ListAppend(ListGetAt(moodList, pos))>
  10.         <cfset moodList = ListDeleteAt(moodList, pos)>
  11.     </cfif>
  12. </cfloop>
  13.  
  14. <cfloop index="tag" list="#itemList#">
  15.     <li><a href="#$.createHref(filename='mood-finder')#?mood=#tag#">#tag#</a></li>
  16. </cfloop>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement