EIANotesApp/Views/Notes/showNotes.phtml
2025-06-13 08:06:38 +02:00

17 lines
360 B
PHTML

<?php include dirname(__DIR__).'/header.phtml'; ?>
<h2>Notes</h2>
<div class="container">
<?php
foreach($notes as $n) {
echo '<div class="item-4-12">';
echo '<h3>' . $n["title"] . '</h3>'
. '<p>' . $n["content"] . '</p>';
echo '</div>';
}
?>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>