PHP Classes

File: api/route/user.php

Recommend this page to a friend!
  Classes of Boss Ibrahim Mussa   PHP Payment Management System   api/route/user.php   Download  
File: api/route/user.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Payment Management System
Web application to manage company payments
Author: By
Last change:
Date: 2 years ago
Size: 197 bytes
 

Contents

Class file image Download
<?php
    $route
->get('/users', "userCtrl#getAllEmployee");
   
$route->get('/users/:id/detail', "userCtrl#getEmployeDetail");
   
$route->post('/users/login', "userCtrl#connexion");

   
?>