Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 812 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 812 Bytes

PHP.MVC framework

A simple MVC framework inspired by Laravel. Built as a learning project in my free time.

  • SQLite Database support.
  • Routing: Supports both controller actions and directly rendering views with functions.
  • Middleware: Easily implement middleware for request handling.
  • Helper Functions:
    • Accessing $_REQUEST data.
    • request()->isRoute('home'), generate, verify csrf
    • Checking if a parameter exists with request()->has('id') or ->get('id').
App::get('/', [Home::class, 'index'])
    ->name('home');

App::post('/user', function () {
    $id = request()->get('id');
    $user = Database::query('SELECT * FROM users WHERE id = ?', [$id])->fetchAll();
    View::show('users', [
        'title' => 'User',
        'data' => $user
    ]);
})->only('auth')
    ->name('user');