Arrays  
 
 

The following example assigns a new array to the variable "months".

<CFSET months=ArrayNew(1)>

This example creates a variable "Array_Length" that resolves to the length of the array "Scores".

<CFSET Array_Length=ArrayLen(Scores)>

This example assigns to index position two in the array "months" the value "February".

<CFSET months[2]="February">



 
 
BackUp LevelNext
 
 

allaire     AllaireDoc@allaire.com
    Copyright © 1998, Allaire Corporation. All rights reserved.