Thanks but my problem is i need the name of the array to add elements:
$sections = IniReadSectionNames ("config.ini")
For $i = 1 To $sections[0]
$sectioni = IniReadSection("config.ini", $sections[$i])
$title=$sections[$i]
Assign ( $sections[$i], _ArrayCreate ("") )
For $j = 1 To $sectioni[0][0]
$z = $sectioni[$j][0]
_ArrayAdd( $Eval($sections[$i]), $z);here!!
Next
Next
Hi,
I have a problem, I need to do a special concatenation, I need to create an array like this:
$var= "text"
dim $ & $var & [3]
I need an array named text => dim $text[3] but I don't know how to do that... Can you help me ?
PS: Sorry for my english, I'm french.