Macromedia ColdFusion 5 Training from the Source (With CD-ROM)
| I l @ ve RuBoard |
| Used to create a new array. Syntax
ArrayNew(number_of_dimensions) Parameters
ArrayNew must know how many dimensions you want the array to be. ColdFusion supports up to three-dimensional arrays. Example
<1--- Create a new 1 dimensional array ---> <cfset newarray = ArrayNew(1)> |
| I l @ ve RuBoard |