Advertisement
snarfblat

Untitled

Apr 22nd, 2014
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfset r = Randomize(TimeFormat(Now(), "ll"))>
  2. <cfset x = 0>
  3.  
  4. <cfloop query="queryname">
  5.    
  6.     <cfif RandRange(1,10) eq 5>
  7.         <cfset x = x + 1>
  8.  
  9.         <!--- put your stuff here --->
  10.     </cfif>
  11.  
  12.     <cfif x eq 8>
  13.         <cfbreak>  
  14.     </cfif>
  15.    
  16. </cfloop>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement