| 
 Date: 05/01/05 (PHP Community) Keywords: mysql, sql Code: 
 Why is the result for CLIENTaddress doubled? (every value is in the array twice). I verified its only going through the while loop once. 
Array
(
    [0] => TEST DATA
    [1] => TEST DATA
    [2] => A_Curtis
    [3] => A_Curtis
    [4] => Market St
    [5] => Market St
    [6] => #321
    [7] => #321
    [8] => San Jose
    [9] => San Jose
    [10] => CA
    [11] => CA
    [12] => 95124
    [13] => 95124
    [14] => 3333
    [15] => 3333
    [16] => BandAid
    [17] => BandAid
    [18] => 1245
    [19] => 1245
    [20] => Testdata2
    [21] => Testdata2
    [22] => Testdata2
    [23] => Testdata2
    [24] => 40.00
    [25] => 40.00
    [26] => 20.00
    [27] => 20.00
    [28] => 
    [29] => 
)Source: http://www.livejournal.com/community/php/293566.html 
 |