Quote:
Originally Posted by Rolnaaba
Um, I am not sure if I exactly understand you but here is an array of strings:
Code:
new StringArray[3][] = { "String 1, Slot 0", "String 2, Slot 1", "String 3, Slot 2, finsihing out the array slots..." }; //close with a brace and optionaly semicolon.
|
I think you understood me! Thats what i wanted. So i guess this is how u would do it?
PHP Code:
new StrName[255] = "TEST"
new StringArray[10][]
StringArray[1][] = "poop"
StringArray[2][] = StrName
is that possible or how do u do it if that doesnt work?