F Farjad Member Licensed customer Jul 18, 2011 #1 I was wondering how would one go about accessing an array like this for example (in php): $arg[$id]['value'] I noticed I could do $arg.1.value but I want to replace the 1 with a variable... is it possible?
I was wondering how would one go about accessing an array like this for example (in php): $arg[$id]['value'] I noticed I could do $arg.1.value but I want to replace the 1 with a variable... is it possible?
F Farjad Member Licensed customer Jul 18, 2011 #2 Welp, I figured it out... turns out {$arg.{$id}.value} works