PHP Classes

File: restAPI/views/item-delete.php

Recommend this page to a friend!
  Classes of Hicri   PHP REST API Example   restAPI/views/item-delete.php   Download  
File: restAPI/views/item-delete.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP REST API Example
Example API that performs CRUD operations
Author: By
Last change:
Date: 7 months ago
Size: 370 bytes
 

Contents

Class file image Download

<?php
header
("Acces-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: POST");



if (
$_SERVER["REQUEST_METHOD"] === "POST") {



   
http_response_code(200);
    echo
json_encode(array(

       
"status" => 1,
       
"message" => "Succesful"

   
));

}else {


   
http_response_code(503);
    echo
json_encode(array(
       
"status" => 0,
       
'message' => "Error - Acces!"

   
));
}

?>