Okay, this is the output from the first few records, all seems to be ok as far as I can tell...
PHP Code:
array(10) { [0]=> string(9) "testlocal" ["UserName"]=> string(9) "testlocal" [1]=> string(9) "Test User" ["RealName"]=> string(9) "Test User" [2]=> string(25) "Testing, testing, testing" ["Detail"]=> string(25) "Testing, testing, testing" [3]=> string(14) "testlocal2.jpg" ["ImageAvailable"]=> string(14) "testlocal2.jpg" [4]=> string(14) "testlocal1.jpg" ["ImageUnavailable"]=> string(14) "testlocal1.jpg" }
array(10) { [0]=> string(5) "antje" ["UserName"]=> string(5) "antje" [1]=> string(5) "Antje" ["RealName"]=> string(5) "Antje" [2]=> string(25) "Testing, testing, testing" ["Detail"]=> string(25) "Testing, testing, testing" [3]=> string(13) "AntjeText.jpg" ["ImageAvailable"]=> string(13) "AntjeText.jpg" [4]=> string(15) "AntjeNoText.jpg" ["ImageUnavailable"]=> string(15) "AntjeNoText.jpg" }
array(10) { [0]=> string(7) "Antonio" ["UserName"]=> string(7) "Antonio" [1]=> string(7) "Antonio" ["RealName"]=> string(7) "Antonio" [2]=> string(25) "Testing, testing, testing" ["Detail"]=> string(25) "Testing, testing, testing" [3]=> string(15) "AntonioText.jpg" ["ImageAvailable"]=> string(15) "AntonioText.jpg" [4]=> string(17) "AntonioNoText.jpg" ["ImageUnavailable"]=> string(17) "AntonioNoText.jpg" }
And then it pretty much continues on like that through all the records...
I also change the query so that it lists the records by RealName, so the first row is now a different set of records- but the same thing happens regardless, only 1 record gets output in the first row...
Bookmarks