added readme.md

This commit is contained in:
Sam Alyx 2025-07-03 09:52:34 +02:00
parent 8804d13f00
commit d1ce68521a
1 changed files with 21 additions and 0 deletions

21
readme.md Normal file
View File

@ -0,0 +1,21 @@
# Tabelle erstellen:
`CREATE TABLE blackboard;`
# PHP Script aufrufen
Einfach im Broder auf die index.php navigieren
# Kategorien definieren
```
INSERT INTO category
(id, NAME)
VALUES
(1, 'Autos'),
(2, 'Zweiräder'),
(3, 'Computer'),
(4, 'Bücher'),
(5, 'Spiele'),
(6, 'Propan und Propanzubehör'),
(7, 'Erotik');
```