every time I run mysql_fetch_array, the array is returned with duplicate values , e.g.
Array
(
[0] => 1
[row_id] => 1
[1] => some text
[first_field] => some text
[2] => some text
[second_field] => some text
}
but I only need individual results in the array, I tried to use
mysql_fetch_array($data, MYSQL_ASSOC);
But it does not matter.
mk_89 source
share