Skip to content

fitri-hy/hytech-framework-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hytech Framework PHP (Basic Started)

PHP framework with MVC (Model View Controller) model.

ROOT
├── app
│   ├── config
│   │   ├── config.php
│   │   └── database.php
│   ├── controllers
│   │   ├── AdminController.php
│   │   ├── Controller.php
│   │   └── NotFound.php
│   ├── helper
│   │   └── Helper.php
│   ├── models
│   │   ├── Database.php
│   │   └── Model.php
│   ├── views
│   │   ├── backend
│   │   │   ├── pages
│   │   │   │	└── dashboard.hytech
│   │   │   ├── partial
│   │   │   │	├── footer.hytech
│   │   │   │	├── head.hytech
│   │   │   │	└── script.hytech
│   │   │   └── layout.hytech
│   │   └── frontend
│   │       ├── pages
│   │       │	├── 404.hytech
│   │       │	└── home.hytech
│   │       ├── partial
│   │       │	├── footer.hytech
│   │       │	├── head.hytech
│   │       │	└── script.hytech
│   │       └── layout.hytech
│   ├── .env
│   ├── HyTech.php
│   └── routes.php
├── public
│   ├── css
│   │   ├── admin_style.css
│   │   └── style.css
│   ├── images
│   │   ├── avatar.png
│   │   └── logo.png
│   ├── js
│   │   ├── admin_main.js
│   │   └── main.js
│   ├── .htaccess
│   └── index.php
├── vendor
│   ├── bin
│   ├── composer
│   └── autoload.php
├── .htaccess
├── composer.json
└── composer.lock

Installation

git clone https://github.com/fitri-hy/hytech-framework-php.git
  • Move hytech-framework-php project to htdocs (xampp)
  • Start apache
  • Run in the browser http://localhost/hytech-framework-php/

Alternative

  • Go to folder public/
  • Open terminal in folder, command: php -S localhost:8000

How to use Static Site (without use connection database): 'use_database' => true Change true to false

Support me by giving stars.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published