PHP Classes

File: api/route/index.php

Recommend this page to a friend!
  Classes of Boss Ibrahim Mussa   PHP Payment Management System   api/route/index.php   Download  
File: api/route/index.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: 1 year ago
Size: 282 bytes
 

Contents

Class file image Download
<?php
    $route
=new Router();
   
$route->get('/',function(){
       
// echo "welcom to the beggining";
       
Response::send("welcome to the Payment Management API");
   
    });
   
//user routing
   
include("user.php");
    include(
"departement.php");

   
$route->run();
?>