Hi.

Here a small example which explains my problem.
The last line does not work.
Is there a way to get the value in one line of code?

Gruss, Oliver

<%
array longint($aDummy;5)

$c1:=new collection
$c1{"array"}:=$aDummy

$c1{"array"}{2}:=new collection("key1";"val1";"key2";"val2")

$ref:=$c1{"array"}{2}

writebr($ref{"key2"})    // ----> val2

writebr($c1{"array"}{2}{"key2"}) // this line will not work
%>


Reply via email to