I am retrieving the rows of my query as such:
$rows = mysqli_fetch_all($result, MYSQLI_ASSOC);
How can I do:
(PSEUDO CODE)
You pseudo code is all fine.. you just need to turn it into PHP....
Answer to first question:
// Loop through each row and print it
foreach( $rows as $row ):
print_r( $row )
endforeach;
Second question.. something like:
foreach( $rows as $row ):
foreach( $row as $col ):
echo $col;
endforeach;
endforeach;