├── Controller ├── Admin.php └── Blog.php ├── Engine ├── Config.php ├── Db.php ├── Loader.php ├── Pattern │ ├── Base.trait.php │ └── Singleton.trait.php ├── Router.php └── Util.php ├── LICENSE.txt ├── Model ├── Admin.php └── Blog.php ├── README.md ├── View ├── add_post.php ├── edit_post.php ├── inc │ ├── control_buttons.php │ ├── footer.php │ ├── header.php │ └── msg.php ├── index.php ├── login.php ├── not_found.php └── post.php ├── _create_admin_pwd.php ├── db.sql ├── index.php ├── readme_tech.txt └── static └── style.css /Controller/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Controller/Admin.php -------------------------------------------------------------------------------- /Controller/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Controller/Blog.php -------------------------------------------------------------------------------- /Engine/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Engine/Config.php -------------------------------------------------------------------------------- /Engine/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Engine/Db.php -------------------------------------------------------------------------------- /Engine/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Engine/Loader.php -------------------------------------------------------------------------------- /Engine/Pattern/Base.trait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Engine/Pattern/Base.trait.php -------------------------------------------------------------------------------- /Engine/Pattern/Singleton.trait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Engine/Pattern/Singleton.trait.php -------------------------------------------------------------------------------- /Engine/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Engine/Router.php -------------------------------------------------------------------------------- /Engine/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Engine/Util.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Model/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Model/Admin.php -------------------------------------------------------------------------------- /Model/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/Model/Blog.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/README.md -------------------------------------------------------------------------------- /View/add_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/add_post.php -------------------------------------------------------------------------------- /View/edit_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/edit_post.php -------------------------------------------------------------------------------- /View/inc/control_buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/inc/control_buttons.php -------------------------------------------------------------------------------- /View/inc/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/inc/footer.php -------------------------------------------------------------------------------- /View/inc/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/inc/header.php -------------------------------------------------------------------------------- /View/inc/msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/inc/msg.php -------------------------------------------------------------------------------- /View/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/index.php -------------------------------------------------------------------------------- /View/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/login.php -------------------------------------------------------------------------------- /View/not_found.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/not_found.php -------------------------------------------------------------------------------- /View/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/View/post.php -------------------------------------------------------------------------------- /_create_admin_pwd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/_create_admin_pwd.php -------------------------------------------------------------------------------- /db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/db.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/index.php -------------------------------------------------------------------------------- /readme_tech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/readme_tech.txt -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pH-7/PHP-MVC-Blog-System/HEAD/static/style.css --------------------------------------------------------------------------------