https://github.com/07rinat07/rest-api-php
REST-API-PHP ---> This guide will focus on creating, reading, updating, and deleting records in the database.
https://github.com/07rinat07/rest-api-php
api-rest jquery-ajax js json mysql-database php postman
Last synced: 12 days ago
JSON representation
REST-API-PHP ---> This guide will focus on creating, reading, updating, and deleting records in the database.
- Host: GitHub
- URL: https://github.com/07rinat07/rest-api-php
- Owner: 07Rinat07
- Created: 2023-08-23T16:30:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-24T11:53:11.000Z (over 2 years ago)
- Last Synced: 2025-02-12T20:18:00.456Z (11 months ago)
- Topics: api-rest, jquery-ajax, js, json, mysql-database, php, postman
- Language: PHP
- Homepage: https://only-to-top.ru/blog/programming/2019-11-11-jquery-ajax-json-php.html
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Rest-API-PHP
#### Rest API ===>
* REST ---> это концепция(архитектура) для организации взаимодействия между независимыми обьектами(приложениями) посредством протокола HTTP. Включает в себя набор принципов(рекомендаций) взаимодействия клиент-серверных приложений. Обычно он представлен в формате JSON.
* API ---> интерфейс взаимодействия с каким-либо обьектом(программой, приложением), включающий в себя набор правил, которые позволяют одному приложению общаться с другим. Эти правила могут включать в себя операции создания, чтения, обновления и удаления. Примером API может служить всем известная библиотека JQuery.
* REST API ---> позволяет вашему приложению взаимодействовать с одним или несколькими различными приложениями, используя концепции REST.
#### Обзор проекта
* Это руководство будет посвящено созданию, чтению, обновлению, и удалению записей в БД.
* Используются JQuery, Ajax, JSON, PHP.
* Использование Ajax предотвратит повторную загрузку всей страницы при каждом нажатии кнопки. В результате это улучшит опыт взаимодействияю Также веб-приложение будет работать быстрее
* Ajax это не технология, а группа технологий Он может включать HTML, CSS, JavaScript и сценарии на стороне сервера, такие как PHP.
* JQuery поможет нам с AJAX частью. Данные JSON будут обрабатываться REST API, созданным с использованием PHP.
#### Inglish info ---> Rest API --->
* REST ---> is a concept (architecture) for organizing interaction between independent objects (applications) using the HTTP protocol. Includes a set of principles (recommendations) for the interaction of client-server applications. It is usually in JSON format.
* API ---> interface for interacting with some object (program, application), which includes a set of rules that allow one application to communicate with another. These rules may include create, read, update, and delete operations. An example of an API is the well-known JQuery library.
* REST API ---> allows your application to interact with one or more different applications using REST concepts.
#### Project overview ===>
* This guide will focus on creating, reading, updating, and deleting records in the database.
* JQuery, Ajax, JSON, PHP are used.
*Using Ajax will prevent the whole page from reloading every time the button is clicked. As a result, this will improve the user experience. Also, the web application will run faster.
* Ajax is not a technology, but a group of technologies. It can include HTML, CSS, JavaScript, and server-side scripting such as PHP.
* jQuery will help us with the AJAX part. The JSON data will be processed by a REST API built using PHP.