PHP Classes

File: api/users-api.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Simple REST API   api/users-api.php   Download  
File: api/users-api.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Simple REST API
Example of REST API using the MVC design pattern
Author: By
Last change:
Date: 27 days ago
Size: 159 bytes
 

Contents

Class file image Download
<?php
   
include "../include/autoload.php";
   
//Creating an instance of a class
   
$viewUsers = new UserView();
    echo
$viewUsers->viewUsers();

?>