home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / arrayswap.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  383 b   |  20 lines

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