This Looks Like a Job for KomputerMan
HOME About Kurtis | On-Line Inventory Management Application | Da Web TimeClock
CF Kustom Tag Gallery |CF Presentations | Sample Applications
Example 5
Example 4 Main Menu Example 6
<CFSET Aerosmith = ArrayNew(2)>
<CFSET Aerosmith[1][1] = 'Tom'>
<CFSET Aerosmith[1][2] = 'Hamilton'>
<CFSET Aerosmith[1][3] = '12/31/1951'>
<CFSET Aerosmith[2][1] = 'Joe'>
<CFSET Aerosmith[2][2] = 'Perry'>
<CFSET Aerosmith[2][3] = '9/10/1950'>
<CFSET Aerosmith[3][1] = 'Brad'>
<CFSET Aerosmith[3][2] = 'Whitford'>
<CFSET Aerosmith[3][3] = '2/23/1952'>
<CFSET Aerosmith[4][1] = 'Joey'>
<CFSET Aerosmith[4][2] = 'Kramer'>
<CFSET Aerosmith[4][3] = '6/21/1950'>
<CFSET Aerosmith[5][1] = 'Steven'>
<CFSET Aerosmith[5][2] = 'Tyler'>
<CFSET Aerosmith[5][3] = '3/26/1948'>
<CFLOOP FROM="1" TO="#ArrayLen(Aerosmith)#" INDEX="xx">
<CFOUTPUT>
Aerosmith[#xx#] = #Aerosmith[xx][1]# - #Aerosmith[xx][2]# -
#DateFormat(Aerosmith[xx][3], "dd-mmm-yyyy")#<BR>
</CFOUTPUT>
</CFLOOP>
Aerosmith[1] = Tom - Hamilton - 31-Dec-1951
Aerosmith[2] = Joe - Perry - 10-Sep-1950
Aerosmith[3] = Brad - Whitford - 23-Feb-1952
Aerosmith[4] = Joey - Kramer - 21-Jun-1950
Aerosmith[5] = Steven - Tyler - 26-Mar-1948
Copyright 2008 KomputerMan.com, Inc. All Rights Reserved.