the unautomated version produce the result , they show specific elements of what i think are multi-dimensional arrays, match1, match2, match3
echo strip_tags($match1[1][0]]);
echo strip_tags($match2[1][0]]);
echo strip_tags($match3[1][0]]);
when i try to automate it.
$id = 1;
for ($id=1; $id<=3; $id++) {
echo strip_tags(’$match’."$id"."[1][0]");
}
this just produces these 3 strings :
$match1[1][0]]
$match2[1][0]]
$match3[1][0]]
I’ve tried everything i know (changing "’{.[]) to try and get it to showing the elements of the multi dimensional arrays), but nothing i have tried works…
Any ideas where i am going wrong…?
by the way
if i dont put apostraphes around ‘$match’ it falls over…
Thanks a lot for your help
Cath