Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ardywsptr/mvc
Materi MVC PHP pada playlist youtube channel Web Programming Unpas
https://github.com/ardywsptr/mvc
backend controller model mvc php view wpu-channel
Last synced: 8 days ago
JSON representation
Materi MVC PHP pada playlist youtube channel Web Programming Unpas
- Host: GitHub
- URL: https://github.com/ardywsptr/mvc
- Owner: Ardywsptr
- Created: 2023-04-18T08:08:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-29T15:02:18.000Z (over 1 year ago)
- Last Synced: 2024-11-14T09:51:50.489Z (2 months ago)
- Topics: backend, controller, model, mvc, php, view, wpu-channel
- Language: PHP
- Homepage: https://www.youtube.com/watch?v=tBKOb8Ib5nI&list=PLFIM0718LjIVEh_d-h5wAjsdv2W4SAtkx
- Size: 2.87 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MVC PHP
**MVC PHP** - Ini merupakan repositori dari implementasi materi Model View Controller (MVC) pada bahasa pemrograman PHP yang ada pada playlist youtube channel [Web Progrramming Unpas](https://www.youtube.com/watch?v=tBKOb8Ib5nI&list=PLFIM0718LjIVEh_d-h5wAjsdv2W4SAtkx) mulai dari pertemuan 1 - 13. Dibuat sebagai backup dan dokumentasi saya pribadi untuk pembelajaran MVC PHP.
MVC (Model View Controler) merupakan pola arsitektur pada perancangan perangkat lunak berorientasi objek, MVC ini bisa diterapkan pada bahasa pemrograman apapun selama bahasa itu menerapkan OOP. Tujuan dari MVC adalah memisahkan antara tampilan(View), data(Model) dan proses(Controler)
![Author](https://img.shields.io/badge/made%20by-Ardywsptr-blue)
![GitHub followers](https://img.shields.io/github/followers/Ardywsptr?style=social)
![GitHub watches](https://img.shields.io/github/stars/Ardywsptr/mvc?style=social)
![GitHub last commit](https://img.shields.io/github/last-commit/Ardywsptr/mvc)
## Alasan Menggunakan MVC
- organisasi dan struktur kode yang baik -> tempat menyimpan file, struktur kode dll
- pemisahan logic dan tampilan
- mempermudah perawatan kode (maintenance)
- implementasi konsep OOP yang sudah dipelajari
- digunakan oleh bannyak WEB Aplication Framework
## Framework yang menggunakan MVC
- PHP : CodeIgniter, Laravel, Yii, dll
- Javascript : AngularJS, React JS, Backbone.js dll
- Java : Sprinng MVC, JSF, Stuts, dll
- Python : Django, CherryPy, dll
- Ruby : Ruby on Rails, Sinatra, dll
## Komponen dasar dari MVC :
### Model
- representasi pengetahuan
- mengelola data
- logika bisnis### Controller
- perantara antara model dan view
- menangani pemrosesan pada aplikasi
- menangani aksi dari user### View
- output, apa yang dilihat oleh user
- representasi visual dari model
- lapisan presentasi
## Requirement :
* **code editor**
* **web server (apache)**
* **web browser**
* **database server (mysql)**
> Jika ada pertanyaan atau issue, kunjungi [new issue](https://github.com/Ardywsptr/mvc/issues/new)
>
>Jika dokumentasi ini bermanfaat mari berteman dengan menekan tombol follow pada [profile](https://github.com/Ardywsptr) ini ☺☺☺
Big Thanks for [Dicoding](https://www.dicoding.com/)