Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luebbert42/7326986f5d5b4a26b78902a4b70d2ad7 to your computer and use it in GitHub Desktop.
Save luebbert42/7326986f5d5b4a26b78902a4b70d2ad7 to your computer and use it in GitHub Desktop.
index.php
<?php
require 'vendor/autoload.php';
// Verzeichnis für Views (Templates)
Flight::set('flight.views.path', 'templates');
// Route: /hallo → rendert hallo.php
Flight::route('/hallo', function () {
Flight::render('hallo.php');
});
// Route: /saghallozu/<name> → gibt "Hallo <name>" aus
Flight::route('/saghallozu/@name', function ($name) {
Flight::render('saghallozu.php', ["name" => $name]);
});
// Starte die Anwendung
Flight::start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment