microphp/index.php

12 lines
187 B
PHP
Raw Normal View History

2023-04-02 10:00:20 +03:00
<?php
2023-04-08 21:34:10 +03:00
include_once "Core/Core.php";
Route::get("/",function(){
echo view("hello",[
"text" => "Bir hata oluştu !"
]);
});
Route::Execute();