-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd.php
268 lines (211 loc) · 9.9 KB
/
add.php
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<?php
//including the database connection file
include_once("config.php");
if(isset($_POST['Submit'])) {
$Eintrittsdatum = $_POST['Eintrittsdatum'];
$Vorname = $_POST['Vorname'];
$Nachname = $_POST['Nachname'];
$Anrede = $_POST['Anrede'];
$Strasse = $_POST['Strasse'];
$Postleitzahl = $_POST['Postleitzahl'];
$Ort = $_POST['Ort'];
$IBAN = $_POST['IBAN'];
$BIC = $_POST['BIC'];
$Jahresbeitrag = $_POST['Jahresbeitrag'];
$TelefonFestnetz = $_POST['TelefonFestnetz '];
$Austrittsdatum = $_POST['Austrittsdatum'];
$Nichtzahler = $_POST['Nichtzahler'];
$KontoName = $_POST['KontoName'];
$Konto_Strasse = $_POST['Konto_Strasse'];
$Konto_Plz = $_POST['Konto_Plz'];
$Konto_Ort = $_POST['Konto_Ort'];
$KontoMandatvom = $_POST['KontoMandatvom '];
$KontoMandatNr = $_POST['KontoMandatNr'];
$KontoErstFolgeabbuchung = $_POST['KontoErstFolgeabbuchung'];
$Ortsteil = $_POST['Ortsteil'];
$Email = $_POST['Email'];
$Verwendungszweck = $_POST['Verwendungszweck'];
$KontoLand = $_POST['KontoLand'];
$KontoBank = $_POST['KontoBank'];
$Geschlecht = $_POST['Geschlecht'];
$Geburtsdatum = $_POST['Geburtsdatum'];
echo ("Aktiv ".$Vorname.$Nachname.$Strasse."<br>");
// checking empty fields
if(empty($Vorname) || empty($Nachname) || empty($Strasse)) {
if(empty($Vorname)) {
echo "<font color='red'>Vorname fehlt.</font><br/>";
}
if(empty($Nachname)) {
echo "<font color='red'>Nachname fehlt.</font><br/>";
}
if(empty($Strasse)) {
echo "<font color='red'>Strasse fehlt.</font><br/>";
}
//link to the previous page
echo "<br/><a href='javascript:self.history.back();'>Zurück zur Erfassung</a>";
}
else {
Echo ("Else Zweig");
// if all the fields are filled (not empty)
//insert data to database
$sql = "INSERT INTO Mitglieder(
Eintrittsdatum,
Vorname,
Nachname,
Anrede,
IBAN,
BIC,
Strasse,
Postleitzahl,
Ort,
Jahresbeitrag,
TelefonFestnetz,
Nichtzahler,
KontoName,
Konto_Strasse,
Konto_Plz,
Konto_Ort,
KontoMandatvom,
KontoMandatNr,
KontoErstFolgeabbuchung,
Ortsteil,
Email,
Verwendungszweck,
KontoLand,
KontoBank,
Geschlecht,
Geburtsdatum
)
VALUES(:Eintrittsdatum,
:Vorname,
:Nachname,
:Anrede,
:IBAN,
:BIC,
:Strasse,
:Postleitzahl,
:Ort,
:Jahresbeitrag,
:TelefonFestnetz,
:Nichtzahler,
:KontoName,
:Konto_Strasse,
:Konto_Plz,
:Konto_Ort,
:KontoMandatvom,
:KontoMandatNr,
:KontoErstFolgeabbuchung,
:Ortsteil,
:Email,
:Verwendungszweck,
:KontoLand,
:KontoBank,
:Geschlecht,
:Geburtsdatum
)";
//
//$sql = "INSERT INTO Mitglieder (
// ID,
// Eintrittsdatum,
// Vorname)
// Nachname,
// Anrede,
// IBAN,
// BIC,
// Strasse,
// Postleitzahl,
// Ort,
// Jahresbeitrag,
// TelefonFestnetz,
// Austrittsdatum,
// Nichtzahler,
// KontoName,
// Konto_Strasse,
// Konto_Plz,
// Konto_Ort,
// KontoMandatvom,
// KontoMandatNr,
// KontoErstFolgeabbuchung,
// Ortsteil,
// Email,
// Verwendungszweck,
// KontoLand,
// KontoBank,
// Geschlecht,
// Geburtsdatum
// )
// VALUES (
// 'NULL',
// :Eintrittsdatum,
// :Vorname,
// :Nachname,
// :Anrede,
// :IBAN,
// :BIC,
// :Strasse
// :Postleitzahl,
// :Ort,
// :Jahrsbeitrag,
// :TelefonFestnetz,
// :Austrittsdatum,
// :Nichtzahler,
// :KontoName,
// :Konto_Strasse,
// :Konto_Plz,
// :Konto_Ort,
// :KontoMandatvom,
// :KontoMandatNr,
// :KontoErstFolgeabbuchung,
// :Ortsteil,
// :Email,
// :Verwendungszweck,
// :KontoLand,
// :KontoBank,
// :Geschlecht,
// :Geburtsdatum
// )";
ECHO ("SQL DURCH");
$query = $dbConn->prepare($sql);
ECHO ("prepare DURCH");
// $query->bindparam(':ID','341');
$query->bindparam(':Eintrittsdatum',$Eintrittsdatum);
$query->bindparam(':Vorname',$Vorname);
$query->bindparam(':Nachname',$Nachname);
$query->bindparam(':Anrede',$Anrede);
$query->bindparam(':IBAN',$IBAN);
$query->bindparam(':BIC',$BIC);
$query->bindparam(':Strasse',$Strasse);
$query->bindparam(':Postleitzahl',$Postleitzahl);
$query->bindparam(':Ort',$Ort);
$query->bindparam(':Jahresbeitrag',$Jahresbeitrag);
$query->bindparam(':TelefonFestnetz',$TelefonFestnetz);
// $query->bindparam(':Austrittsdatum',$Austrittsdatum);
$query->bindparam(':Nichtzahler',$Nichtzahler);
$query->bindparam(':KontoName',$KontoName);
$query->bindparam(':Konto_Strasse',$Konto_Strasse);
$query->bindparam(':Konto_Plz',$Konto_Plz);
$query->bindparam(':Konto_Ort',$Konto_Ort);
$query->bindparam(':KontoMandatvom',$KontoMandatvom);
$query->bindparam(':KontoMandatNr',$KontoMandatNr);
$query->bindparam(':KontoErstFolgeabbuchung',$KontoErstFolgeabbuchung);
$query->bindparam(':Ortsteil',$Ortsteil);
$query->bindparam(':Email',$Email);
$query->bindparam(':Verwendungszweck',$Verwendungszweck);
$query->bindparam(':KontoLand',$KontoLand);
$query->bindparam(':KontoBank',$KontoBank);
$query->bindparam(':Geschlecht',$Geschlecht);
$query->bindparam(':Geburtsdatum',$Geburtsdatum);
echo ("Bind2 durch");
$query->execute();
echo ("nach Execute");
// insert these two lines after prepare():
// catch(PDOException $e) {
// echo $e->getMessage();
// Alternative to above bindparam and execute
// $query->execute(array(':name' => $name, ':email' => $email, ':age' => $age));
//display success message
echo "<font color='green'>Data added successfully.";
echo "<br/><a href='index.php'>View Result</a>";
}
}
?>