home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Documentation / snippets / arrayswap.cfm < prev    next >
Encoding:
Text File  |  1999-04-12  |  447 b   |  22 lines

  1. <!--- This example shows ArraySwap --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>ArraySwap Example</TITLE>
  5. </HEAD>
  6.  
  7. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  8. <BODY  bgcolor="#FFFFD5">
  9.  
  10. <H3>ArraySwap Example</H3>
  11.  
  12. <CFSET month = ArrayNew(1)>
  13. <CFSET month[1] = "February">
  14. <CFSET month[2] = "January">
  15. <CFSET temp = ArraySwap(month, 1, 2)>
  16. <CFSET temp = ArrayToList(month)>
  17.  
  18. <P>Show the results: <CFOUTPUT>#temp#</CFOUTPUT>
  19.  
  20. </BODY>
  21. </HTML>       
  22.