<body>
<p>
Here are all the players in the database:
</p>
<!-- Displaying Player Names -->
<?php foreach($player as $players): ?>
<blockquote>
<p>
<?php echo htmlspecialchars($players['name'], ENT_QUOTES, 'UTF-8') .
' ' .
htmlspecialchars($players['role'], ENT_QUOTES, 'UTF-8');
?>
</p>
</blockquote>
<?php endforeach; ?>
<br />
<p><a href="?addplayer">Add A Player!</a></p>
<br />
</body>