Deutsch: PHP JSON REST-API tutorial

preview_player
Показать описание


Wollt ihr direkte hilfe bei euren Projekten, Aufgaben oder Problemen?

Datenbank-schemata:

create database if not exists php_api;

use php_api;

create table if not exists product
(
id binary(16) not null
primary key,
name varchar(200) null,
description text null,
price decimal(7, 2) null,
insert_date timestamp default CURRENT_TIMESTAMP null,
delete_date datetime null
);
Рекомендации по теме
Комментарии
Автор

Hey guys,
worry not, content is mainly going to be in English. Am just trying something out.

neoan
Автор

Haha, nice Joke Stefan, this is German, right?

Marco.Hochmuth