-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
56 lines (30 loc) · 1.58 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Team Error 404
Übungsprojekt GPB 125-129 Blau
---------------------------------------------------------
script.js und index wurden nochmal gepusht.
---------------------------------------------------------
!!NICHT VERGESSEN!! - db.php zu ändern - KEIN LOCALHOST!
#############################################################################
Alles funktioniert, keine Bugs etc. Session, Button Bearbeiten i.O. #
#
Kein Modal - popup Window, session wurde repariert, kein Alert beim Löschen.#
#############################################################################
****************************************************************************
TODO:
TESTEN,
danach:
SCHRIFTGRÖßE
****************************************************************************
-----------------------------------
//new form index.php
<form method="post" action="index.php" id="noteForm">
<input type="hidden" name="action" id="formAction" value="add">
<input type="hidden" name="noteId" id="noteId">
<label for="title">Titel:</label><br>
<input type="text" name="title" id="title" required>
<label for="content">Inhalt:</label><br>
<textarea name="content" id="content" required></textarea>
<button type="submit" id="submitButton">Notiz hinzufügen</button>
</form>
//button
<button type="button" onclick="openEdit('<?php echo $note['ID']; ?>', '<?php echo htmlspecialchars($note['Titel'], ENT_QUOTES); ?>', '<?php echo htmlspecialchars($note['Inhalt'], ENT_QUOTES); ?>')">Bearbeiten</button>