Skip to content

ardwiinoo/phpmvc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Phpmvc -- Basic

Memahami konsep model view dan controller pada pemrograman php.

Apache-2.0 License

Features

  • CRUD data mahasiswa
  • Clean code
  • Using database handler PDO
  • Cari data mahasiswa

Screenshots

App Screenshot

Run Locally

Clone the project

  git clone https://github.com/ardwiinoo/phpmvc.git

Go to the project directory

  cd phpmvc

Go to the project config

  cd app/config/config.php

Change the BASEURL according to your localhost

  define('BASEURL', 'http://localhost:8080/mvc_projects/phpmvc/public');

Change DB_HOST and others as per your database

  define('DB_HOST', 'localhost');
  define('DB_USER', 'root');
  define('DB_PASS', '');
  define('DB_NAME', 'phpmvc_tuts');

Run project

  http://localhost:8080/mvc_projects/phpmvc/public/

Authors