hello,
i want to ask about naming a variable which is generated in the loop..
for example :
$term = array ("a","b","c");
for ($i=0;i<count($term);$i++) {
#generate an array for each loop
#with specified name like $array_1
}
well, i tried $array_$i, it wouldn't work..
(maybe it sounds silly)..
but,pls help me cope with this..
thanks