شرح PHP REST API From Scratch [1] - Database & Read
دورة افضل كورس لتعلم PHP REST API From
شارك الآن استفساراتك مع اعضاء دورة افضل كورس لتعلم PHP REST API From اضغط هنا
سجل الآن
قائمة الدروس | 3 درس
التعليقات
دورات ذات صلة
REST, or in the full form, Representational State Transfer has become the standard design architecture for developing web APIs. At its heart REST is a stateless client-server relationship; this means that unlike many other approaches there is no client context being stored server side (no Sessions). To counteract that, each request contains all the information necessary for the server to authenticate the user, and any session state data that must be sent as well.
REST takes advantage of the HTTP request methods to layer itself into the existing HTTP architecture. These operations consist of the following:
GET - Used for basic read requests to the server
PUT- Used to modify an existing object on the server
POST- Used to create a new object on the server
DELETE - Used to remove an object on the server