Entry Point in MVC Framework in PHP
To start, in the root folder of your domain,
create a file index.php with the following
content:
<?php
namespace Core;
error_reporting(E_ALL);
ini_set('display_errors', 'on');
?>
Create a file index.php and add
the specified lines to it.