PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Marcelo Telles   CRUD PHP MVC   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: CRUD PHP MVC
Application that uses the MVC Design Pattern
Author: By
Last change:
Date: 5 months ago
Size: 577 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="pt-br">
    <head>
        <meta charset="UTF-8">
        <title>Celke</title>
        <link rel="stylesheet" href="./libs/bootstrap-4.0.0-dist/css/bootstrap.css">
        <script src="./libs/jquery/jquery.js"></script>
        <script src="./libs/bootstrap-4.0.0-dist/js/bootstrap.js"></script>
    </head>
    <body>
        <?php
       
require './vendor/autoload.php';
       
define('BASE_PATH', realpath(__DIR__));


        use
Core\ConfigController as Home;
       
$Url = new Home();
       
$Url->load();

       
?>
</body>
</html>