microphp/index.php

12 lines
187 B
PHP

<?php
include_once "Core/Core.php";
Route::get("/",function(){
echo view("hello",[
"text" => "Bir hata oluştu !"
]);
});
Route::Execute();