Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $res = $dbh->query("SELECT * FROM persona");
  2. echo '<table>';
  3. while($row = $res->fetch()){
  4.   echo "<tr>
  5.       <td>{$row['id']}</td>
  6.       <td>{$row['nomyape']}</td>
  7.        </tr>";
  8. }
  9. echo '</table>';
  10.