Can anyone explain why running mysql_fetch_array($result,MYSQL_BOTH) on a result sometimes means that key[0] = 0 whilst at other times it ends up with a string/value. See example array below:
Array
(
[0] => 0
[groupTitle] => TEST 5
)
In this instance I would expect 0 to equal 'TEST 5'