issue:
$a = array("a" => "1", "b" => "2");
print_r($a);
output:
Array = ([0]=>'1'
[a]=>'1'
[1]=>'2'
[b]=>'2')
but what I want is like
Array = ( [a]=>'1'
[b]=>'2')
Any suggestions? Thanks in advance.
|
Quote from the manual
Unless you tell mysql_fetch_array to return associative, then it will return both enumarated and associative entries for each column specify MYSQL_ASSOC as the second argument to your mysql_fetch_array to fix this problem In the longer term, I'd also recommend dropping mysql and using mysqli or even pdo |
|||||
|
|
should be:
Or if you mean you want to display the array, then
|
||||
|
|||
|
|
Array = ( [a]=>'1' [b]=>'2')– anna Jun 8 '12 at 12:25mysql_fetch_array(). If you would've put that into your original question, I (and I'm sure a lot of other people) would have been able to give you an answer right away. It never dawned on me that you were trying to extract data from a database because you explicitly stated it was from an array. – Crontab Jun 8 '12 at 16:18