PHP Rest API Example


PHP Rest API Example
PHP Rest API Example

Hi friends, if you are wondering on how to create a PHP Rest API or perform a CRUD operation using PHP Rest API then you have come to the right place. Creation of rest API is very easy and I am going to explain it in a step-by-step process. In this example, you will learn the CRUD operation with the help of REST(Representational state transfer) API.

In a simple way, you will get the HTTP request from any kind of application or via POSTMAN and perform some action based on the type of request and return the response against that request.

Also read, Razorpay payment gateway integration in PHP

Steps to Create PHP REST API

Step 1:- Establish the database connection as shown below. (dbconnect.php)

<?php
$servername='localhost';
$username="root";
$password="";
try
{
	$con=new PDO("mysql:host=$servername;dbname=myproject_db",$username,$password);
	$con->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
	//echo 'connected';
}
catch(PDOException $e)
{
	echo '<br>'.$e->getMessage();
}
	
?>

Step 2:- Create a table in your MySQL database as shown below

DDL information of the table

CREATE TABLE employee (
id int(10) NOT NULL AUTO_INCREMENT,
name varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
age int(20) NOT NULL,
department varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (id)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci

Step 3:- Create a folder name ‘restapi’ inside the root directory of your local server i.e. www.

Step 4:- Now, create a file ‘restapicreate.php’ under the restapi folder to insert the data inside the table of your MySQL database from the POSTMAN.

restapicreate.php

<?php
header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json");
header("Access-Control-Allow-Methods: POST");
header("Access-Control-Max-Age: 3600");
header("Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With");

$data = json_decode(file_get_contents("php://input"));
include('dbconnect.php');
//print_r($data);
 $empname = $data->emp_name;
 $age = $data->age;
 $department = $data->department;
// //echo $brokercode;
 $sql = "INSERT INTO employee(name,age,department) values('$empname','$age','$department')";
 $stmt = $con->prepare($sql);
 $stmt->execute();
 if($stmt->rowCount()>0)
 {
    $array = array('status'=>'success','msg'=>'Added Successfully');
    echo json_encode([$array]); 
 }
  else{
    $array = array('status'=>'success','msg'=>'Failed to Add');
    echo json_encode([$array]);  
  }
?>

The request and response from the POSTMAN are as shown below

PHP Rest API Example

Step 5:- Now, create a file ‘restapiread.php’ under the restapi folder to get the data from the table in your database and display it in the POSTMAN view.

restapiread.php

<?php
header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json");
header("Access-Control-Allow-Methods: POST");
header("Access-Control-Max-Age: 3600");
header("Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With");

$data = json_decode(file_get_contents("php://input"));
include('dbconnect.php');

 $sql = "SELECT * from employee ORDER BY id DESC";
 $stmt = $con->prepare($sql);
 $stmt->execute();
 $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
 if($stmt->rowCount()>0)
 {
    $array = array('status'=>'success','msg'=>$data);
    echo json_encode([$array]); 
 }
  else{
    $array = array('status'=>'success','msg'=>'Data Not Available');
    echo json_encode([$array]);  
  }
?>

Request and Response from POSTMAN as shown below

PHP Rest API Example

Step 6:- Now, create a file ‘restapiupdate.php’ to update the data in the table of your MySQL database from the POSTMAN

restapiupdate.php

<?php
header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json");
header("Access-Control-Allow-Methods: POST");
header("Access-Control-Max-Age: 3600");
header("Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With");

$data = json_decode(file_get_contents("php://input"));
include('dbconnect.php');
//print_r($data);
 $empname = $data->emp_name;
 $age = $data->age;
 $department = $data->department;
// //echo $brokercode;
 $sql = "update employee set name='$empname',age='$age',department='$department' where name='$empname'";
 $stmt = $con->prepare($sql);
 $stmt->execute();
 if($stmt->rowCount()>0)
 {
    $array = array('status'=>'success','msg'=>'Updated Successfully');
    echo json_encode([$array]); 
 }
  else{
    $array = array('status'=>'success','msg'=>'Failed to Add');
    echo json_encode([$array]);  
  }
?>

Request data from the POSTMAN with Response:

PHP Rest API Example

Step 7:- Now, create a file ‘restapidelete.php’ under the restapi folder to delete the data from the table of your MySQL database from the POSTMAN.

restapidelete.php

<?php
header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json");
header("Access-Control-Allow-Methods: POST");
header("Access-Control-Max-Age: 3600");
header("Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With");

$data = json_decode(file_get_contents("php://input"));
include('dbconnect.php');
//print_r()

 $sql = "select * from employee where id='$data->id'";
 $stmt = $con->prepare($sql);
 $stmt->execute();
 $row = $stmt->fetch(PDO::FETCH_ASSOC);
 if($row==""){
  $array = array('status'=>'success','msg'=>'ID not available');
    echo json_encode([$array]); 
 }
 else{
   $sql1 = "delete from employee where id='$data->id'";
   $stmt1 = $con->prepare($sql1);
   $stmt1->execute();
   //$info = "SELECT * from employee where id='$data->id'";
   $array = array('status'=>'success','msg'=>'Deleted Successfully');
   echo json_encode([$array]); 
 }
?>

Request and Response from POSTMAN as shown below

PHP Rest API Example

Explanation:-

header("Access-Control-Allow-Origin: *")
–>This header defines whether the response from the server should be shared with a request that comes from the given origin or URL from any application or POSTMAN.

header("Content-Type: application/json")
–>This header is used to return the response from the server in JSON format.

header("Access-Control-Allow-Methods: POST")
–> This header is used to receive the request data via the POST method.

header("Access-Control-Max-Age: 3600")
–> This header indicates how long the result from the response should appear.

$data = json_decode(file_get_contents("php://input"));

Note that in the above line file_get_contents(“php://input”) is used to get the request inputs from the POSTMAN. In addition to that json_decode() is used to wrap the request inputs and convert those inputs into objects so that inputs can be declared as PHP variables. Download POSTMAN

Also check, the best password strength checker

Conclusion:- I hope this tutorial will help you to understand the concept. If there is any doubt then please leave a comment below.


Leave a Comment

RATU311

RATU311

THOR311

parlay

CERI188

HOKI311

RATU311

RATU311

judi bola online

Mix Parlay

THOR311

Ceri188

Thor311 Game Online

Thor311 Aplikasi

LINK CERI188

RATU311 NONTON BOLA

RATU311

HOKI311 Link Alternatif

CERI188 Link RTP LIVE

THOR311

THOR311

Thor311 Live Casino

CERI188

akses VIP THOR311

THOR311

link daftar THOR311

THOR311

situs thor311

THOR311 LOGIN

THOR311

THOR311

THOR311

RATU311

RATU311

HOKI311 Link SABUNG AYAM RESMI

HOKI311 Link QRIS EWALLET

RATU311

LINK CERI188

parlay

HOKI311 Link RTP Gacor

THOR311

RATU311

THOR311

THOR311

HOKI311 Link Apk Resmi

RATU311

KUPU178

RATU311

RATU311

RATU311

CERI188

CERI188 Situs Spaceman Terbaik 2026

KUPU178 Link Daftar

CERI188

CERI188

CERI188

CERI188

CERI188

HOKI311

THOR311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

CERI188 Live Casino

HOKI311 Lapak Arena Slot

RATU311 judi bola

CERI188 Live Casino

HOKI311 Link Spaceman Online

RATU311

HOKI311 Link Daftar Resmi

CERI188 Toto SGP Online

KUPU178

KUPU178

KUPU178

KUPU178

HOKI311 TEMBAK IKAN ONLINE

RATU311

CERI188 PANDUAN MAXWIN SLOT ONLINE

RATU311

RATU311

RATU311

KUPU178

HOKI311 Link Login Alternatif

HOKI311 Live Casino Online

HOKI311 Situs Slot Gacor

THOR311

THOR311

situs judi bola

THOR311

Ceri188 Game Online

CERI188

link login CERI188

THOR311

link login CERI188

CERI188

link login CERI188

link login CERI188

link daftar CERI188

THOR311

HOKI311

HOKI311

CERI188

CERI188

CERI188

parlay

THOR311

RATU311

RATU311

HOKI311

HOKI311

parlay

HOKI311

RATU311

THOR311

KUPU178

HOKI311

KUPU178

KUPU178

KUPU178

HOKI311

parlay

slot gacor

kupu178 link alternatif

kupu178 slot

kupu178 daftar

kupu178 login

link daftar kupu178

judi bola

HOKI311

RATU311

link alternatif RATU311

Link daftar RATU311

link login RATU311

RATU311

RATU311

RATU311

RATU311

KUPU178

KUPU178

KUPU178

THOR311

KUPU178

KUPU178

KUPU178

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

RATU311

THOR311

RATU311

KUPU178

KUPU178

HOKI311

THOR311

KUPU178

THOR311

THOR311

slot thailand

judi bola

THOR311

THOR311

KUPU178

THOR311

situs bola

THOR311

slot gacor

slot gacor

yakuza303

slot gacor

unobet77

slot gacor

slot gacor

RATU311

parlay

parlay

slot gacor

mix parlay

judi bola

judi bola

mix parlay

parlay

judi bola

sv388

judi bola

judi bola

judi bola

parlay

THOR311