We've been using hb_HGetDef() to retrieve values from a hash array and its ok for 1st tier values. How can we retrieve values which are on a 2nd level?
For example [data][id]. The [data] node has 2 keys inside it: id and name.
If i do it like this
Code: Select all
hTest :=hb_HGetDef( tempHash , "data", "" )After that i can run this:
Code: Select all
hTest2 :=hb_HGetDef( hTest , "name", "" )thanks in advance