PHP code example of eylmz / wd-mvc

1. Go to this page and download the library: Download eylmz/wd-mvc library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

eylmz / wd-mvc example snippets

 
PHP-MVC
|   .htaccess
|   index.php
|
+---App
|   |   .htaccess
|   |   Router.php
|   |   
|   +---Config
|   |       Config.php
|   |       Database.php
|   |       PrettyUrls.php
|   |       
|   +---Controllers
|   |   |   HomeController.php
|   |   |   
|   |   \---Admin
|   |           AdminHomeController.php
|   |           
|   +---Models
|   |       TestModel.php
|   |       YeniModel.php
|   |       
|   \---Views
|       |   index.php
|       |   test.edge.php
|       |   
|       \---AdminViews
|               index.php
|               
+---Public
|       index.html
|       
+---System
|   |   .htaccess
|   |   
|   +---Core
|   |       App.php
|   |       Autoload.php
|   |       Controller.php
|   |       Model.php
|   |       Route.php
|   |       Router.php
|   |       
|   +---Helpers
|   |       Session.php
|   |       Template.php
|   |       
|   \---Plugins
            Setting.php