Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

navnit-chauhan/MVC-REST-API-PHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Using PHP MVC REST API

Representational state transfer (REST) is a software architectural that seperates models, views and controller component and interconnectes them. it is a client-server architecture.

Project Overview

This project is created for getting simple knowledge of php with MVC framework.

Project includes PHP as a backend language and MySql database.

Project includes email Authentication and CRUD operation on different records.

Connecting to MySql using PHP

class Model {
    protected $connection = "";
    protected $servername="localhost";
    protected $username="root";
    protected $password=""; // your mysql database password
    protected $dbname=""; // database name

    // connecting with database
    function __construct() {
        mysqli_report(MYSQLI_REPORT_STRICT);
        try {
            $this->connection = new mysqli($this->servername, $this->username, $this->password, $this->dbname);
        } catch(Exception $e) {
            echo "Connection to database is failed".$e->getMessage();
            exit;
        }
    }
}

Calling Model components from Controller

require_once('Models/Model.php');
session_start();

class Controller extends Model {
    function __construct() {
            parent::__construct();
            $baseDir = basename(__FILE__); 
            $location = substr($_SERVER['PHP_SELF'], strpos($_SERVER['PHP_SELF'], $baseDir) + strlen($baseDir));
            if($location) {
                switch($location) {
                    // cases ..
                }
            }
    }
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.