Couple of naming questions

print "<br>&writename="; 
 
bla bla bla
 
}

eval(“ring”+i).writename.text = this.writename;

I had that piece of code in PHP and Flash and it worked fine.
However now I want to increment it.
So I have tried changing the names so that they increment.

 
$count = 0;
while ($array = mysql_fetch_array($fewComments)) {
 print "<br>&writename[$count]="; 
 
bla bla bla
 
$count++;
}

eval(“ring”+i).writename.text = eval(“writename”+i);

Is [color=blue]&writename[$count]=";[/color] the correct way to [color=blue][color=black]increment [/color]&writename=";[/color] in PHP ?

Is [color=blue]eval(“writename”+i);[/color] the correct way to increment [color=blue]this.writename;[/color] in Flash ?

BUMP

Someone must know the answer to this…

Is [color=blue]eval(“writename”+i);[/color] the correct way to increment [color=blue]this.writename;[/color] in Flash ?

I think that the [color=#0000ff]eval(“writename”+i);[/color] is where my error is and this one statement is holding up my project. :frowning: