I’ve got a database table with at least three rows in it. From php, I have successfully connected to my db and extracted all table information with ‘SELECT * from mytable’ .
Now I want to loop through first each row, and then each cell, printing out the contents of each cell.
I know this might be a simple task for a more experienced programmer, but I can’t figure it out, and I can’t find any examples online and it’s driving me stark raving bonkers.
How can I do this ?
You could use a for each loop…
Haven’t tested it, so there may be a syntax error in it, but this is the main idea