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 4
Example 3
Main Menu
Example 5
<CFSET Aerosmith = ArrayNew(1)>
<CFSET Aerosmith[1] = 'Tom'>
<CFSET Aerosmith[2] = 'Joe'>
<CFSET Aerosmith[3] = 'Brad'>
<CFSET Aerosmith[4] = 'Joey'>
<CFSET Aerosmith[5] = 'Steven'>
<CFLOOP FROM="1" TO="#ArrayLen(Aerosmith)#" INDEX="xx">
<CFOUTPUT>
Aerosmith[#xx#] = #Aerosmith[xx]#<BR>
</CFOUTPUT>
</CFLOOP>
Aerosmith[1] = Tom
Aerosmith[2] = Joe
Aerosmith[3] = Brad
Aerosmith[4] = Joey
Aerosmith[5] = Steven
Copyright 2008 KomputerMan.com, Inc. All Rights Reserved.