Database and SQL Learning Mode

You have been given the following code snippet:

<?php
$stmt = $dbh->prepare("SELECT * FROM USER where name = ?");
if ($stmt->execute(array($_GET['name']))) {
  while (??????) {
    print_r($row);
  }
}
?>

What will you write at line number 4 to fetch data from database?