Hello everyone!
I've previously been working with mysql_fetch_array alot, BUT, just resently I noticed that it returns this result when dumping the array:
Array
(
[0] => 8
[id] => 8
[1] => borr 3.JPG
[imgname] => borr 3.JPG
[2] => varme
[category] => varme
[3] => dfsdsddsdsffff
[title] => dfsdsddsdsffff
[4] => dfssdgggg
[description] => dfssdgggg
)
The query is:
$dbFiles = mysql_fetch_array(mysql_query("SELECT * FROM installations"));
print_r($dbFiles);
And the database contains the fields:
id, imgname, category, title, description
But NONE of the numbers, so why do I get this result from the function?