Hello, again.
my problem is (still) that I have sth. like this:
$test=5;
$name[1] = "test";
and I would like to get the value 5, but without using $test.
I have to use $name[1], which means that I have to get
the value of this field and regard the text string in there
as variable name!
would be ** in C :-)
any ideas?
I tried:
$$name[1]
"$" . $name[1]
"$" . "$name[1]"
.... and 100 other ideas..
IF anybody knows how to do this.. please help me.
Thank you so much,
Chris