11-09-2007, 12:48 AM
|
#2 (permalink)
|
|
Moderateur
Join Date: Apr 2007
Posts: 1,381
Thanks: 5
|
You can just use the regular loop structures (foreach, for, while, and so on) since $aResult is just a normal array.
PHP Code:
foreach ($aResult as $aRow) { // Do something for each row, perhaps echo $aRow['username'], ' smells!'; }
|
|
|
|