Good evening, maybe I just sleep but I do not know / remember how to assign the contents of one variable to another variable.
Let me give an example to better explain:
global $ minni1 = "hello"
global $ minni2 = "how"
...
for $ i = 1 to 40
$pippo[1] [$ i] = $minni&$i (where I want to assign to the array $ foo the value of the variable compound)
Next
I tried that, but I assign the array name $minni1 , $minni2 and not its content, I tried to assign .... but does not work.
How can I make.
I have to create the Array $pippo with values ranging from $pippo [1] [1] to $pippo [8] [40], not to create hundreds of rows full of brackets and quotes I thought I'd use this trick but .... does not work, I can not assign the contents of the variable "compound" to the array.
If there are other ways to create multidimensional arrays "simply", who knows so kind as to tell me how to do it?
thanks
Alberto