Hab es hinbekommen ;) try and error hat funktioniert XD
<html>
<body>
<?php
$pdo = new PDO('mysql:host=localhost;dbname=aquarium', 'mein_DB_Username', 'mein_DB_PW');
$sql = "SELECT id, name, gattung, geschlecht FROM aqua";
?>
<table>
<tbody>
<?php foreach ($pdo->query($sql) as $row) : ?>
<tr>
<td><?=$row['id']?></td>
<td><?=$row['name']?></td>
<td><?=$row['gattung']?></td>
<td><?=$row['geschlecht']?></td>
</tr>
<?php endforeach; ?>
</tbody>
<table>
</body>
</html>
Danke ;)