Iemand tips? :)
// news.php
<html>
<head>
<title><?php echo $title; ?></title>
</head>
<body>
<h1><?php echo $title; ?></h1>
<?php
foreach($newsitems AS $newsitem)
{
echo "<h2>".$newsitem["title"]."</h2>";
echo "<p>".$newsitem["description"]."</p>";
}
?>
</body>
</html>
// newsitem.controller.php
<?php
class NewsitemController
{
private $_model;
public function __construct($model)
{
$this->_model = $model;
}
public function getAll()
{
$title = "Nieuws";
$newsitems = $this->_model->getAll();
include "views/news.php";
}
}
?>