Seems like you're missing an "$" in the assignment statement.
It should be $analysis[$I], same for the echo...
kittiyot wrote:
I use code in below --->
$I = 0;
while ($row=mysql_fetch_array($result11)) {
$analysis = $row[3];
echo $analysis,$I;
$I=$I+1;
}
And I can use my $analysis by anyway because my $analysis is final value
Please Help me?.....:-)