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

  1. <!--- This example shows ListFirst, ListLast, and ListRest --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>ListRest Example</TITLE>
  5. </HEAD>
  6.  
  7. <BODY>
  8. <H3>ListRest Example</H3>
  9.  
  10. <!--- Find a list of users who wrote messages --->
  11. <CFQUERY NAME="GetMessageUser" DATASOURCE="cfsnippets">
  12. SELECT    Username, Subject, Posted
  13. FROM    Messages
  14. </CFQUERY>
  15.  
  16. <CFSET temp = ValueList(GetMessageUser.Username)>
  17. <!--- Show the first user in the list --->
  18. <P>The first user in the list is <CFOUTPUT>#ListFirst("#temp#")#</CFOUTPUT>.
  19. <P>The rest of the users in the list is as follows:
  20. <CFOUTPUT>#ListRest("#temp#")#</CFOUTPUT>.
  21. <P>The last user in the list is <CFOUTPUT>#ListLast("#temp#")#</CFOUTPUT>
  22.  
  23. </BODY>
  24. </HTML>       
  25.