Hmm...
I take from a query ids like
ougk12
ougk34
ougk45 and so on (i dont know the exact name of the ids before i run the query).
After some process, (to avoid dublicates) i put them in an an array using the following...
$i=0;
if($found1==FALSE){
$Sites[$i]=$Row[6]; //Row[6] has the id i want
$i++;
//i want here to create an array named $Sites[$i]
if i use the $$Row[6]=array ( );
i haven't got the proper outcome...
and then how should i access the table named $Sites[$i] or $Row[6] here...