How to display MySQL table using php and edit it in a web browser
PHP Snippet 1:
$row = $result->fetch_assoc();
while ($row = $result->fetch_assoc()){
PHP Snippet 2:
$row = $result->fetch_assoc();
$row = $result->fetch_assoc();
$row = $result->fetch_assoc();
print_r($row);