1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php include "../header.php"; function end_page() { include "../footer.php"; } foreach (glob("../../models/*.php") as $filename) { include $filename; } function runController(string $name) { include "../../controllers/$name.php"; include '../../controllers/meta.php'; }