Source of: tutorial/login-clanwar/clanwar-add-v3.php (Download Source)
Last Modified: Fri, 16 Feb 2007 13:38:18 UTC

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
<?php
    case 'add':
        switch(isset($_POST['submit'])?$_POST['submit']:'')
        {
            case 'Liga auswählen':
                if(!preg_match('/^\d+$/', $_POST['liga']))
                {
                    $error = new HTML('p');
                    $error->addInhalt('Bitte geben sie eine gültige Liga an');
                    $error->ausgeben();
                }
                else
                {
                    $_SESSION['liga'] = $_POST['liga'];
                    $formular = new HTML('form');
                    $formular->addAttribut('method', 'post');
                    $formular->addAttribut('action', 'index.php?section=admin'.
                                                    '&site=clanwar'.
                                                    '&action=add');
                    $formular->addAttribut('class', 'formular');
                    // Die XML-Datei wurde zu breit, da hab ich den Quellcode
                    // umgebrochen

                    $überschrift = new HTML('p');
                    $überschrift->addInhalt('Neuen Clanwar hinzufügen');
                    $reihe->addInhalt($überschrift);
                    // Überschrift fertig

                    $liste = new HTML('ol');

                    $eintrag = new HTML('li');

                    $label = new HTML('label');
                    $label->addAttribut('for', 'gegner');
                    $label->addInhalt('Gegner');

                    $input = new HTMLempty('input');
                    $input->addAttribut('type', 'name');
                    $input->addAttribut('name', 'gegner');
                    $input->addAttribut('id', 'gegner');

                    $eintrag->addInhalt($label);
                    $eintrag->addInhalt($input);
                    $liste->addInhalt($eintrag);

                    $eintrag = new HTML('li');

                    $label = new HTML('label');
                    $label->addAttribut('for', 'url');
                    $label->addInhalt('Homepage des Gegners');

                    $input = new HTMLempty('input');
                    $input->addAttribut('type', 'name');
                    $input->addAttribut('name', 'url');
                    $input->addAttribut('id', 'url');

                    $eintrag->addInhalt($label);
                    $eintrag->addInhalt($input);
                    $liste->addInhalt($eintrag);

                    $eintrag = new HTML('li');

                    $submit = new HTMLempty('input');
                    $submit->addAttribut('type', 'submit');
                    $submit->addAttribut('name', 'submit');
                    $submit->addAttribut('value', 'Gegnerdaten speichern');

                    $reset = new HTMLempty('input');
                    $reset->addAttribut('type', 'reset');
                    $reset->addAttribut('name', 'submit');
                    $reset->addAttribut('value', 'Daten zurücksetzen');

                    $sessid = new HTMLempty('input');
                    $sessid->addAttribut('type', 'hidden');
                    $sessid->addAttribut('name', session_name());
                    $sessid->addAttribut('value', session_id());

                    $eintrag->addInhalt($submit);
                    $eintrag->addInhalt($reset);
                    $eintrag->addInhalt($sessid);
                    $liste->addInhalt($eintrag);

                    $formular->addInhalt($liste);
                    $formular->ausgeben();
                }
                break;
            case 'Spiel auswählen':
                if(!(preg_match('/^\d+$/', $_POST['spiel']) AND $_POST['spiel']))
                {
                    $error = new HTML('p');
                    $error->addInhalt('Bitte wählen sie ein gültiges Spiel aus.');
                    $error->ausgeben();
                }
                else
                {
                    $_SESSION['spiel'] = $_POST['spiel'];
                    $formular = new HTML('form');
                    $formular->addAttribut('method', 'post');
                    $formular->addAttribut('action', 'index.php?section=admin'.
                                                    '&site=clanwar'.
                                                    '&action=add');
                    $formular->addAttribut('class', 'formular');
                    // Die XML-Datei wurde zu breit, da hab ich den Quellcode
                    // umgebrochen

                    $überschrift = new HTML('p');
                    $überschrift->addInhalt('Neuen Clanwar hinzufügen');
                    $formular->addInhalt($überschrift);
                    // Überschrift fertig

                    $liste = new HTML('ol');

                    $eintrag = new HTML('li');

                    $label = new HTML('label');
                    $label->addAttribut('for', 'liga');
                    $label->addInhalt('Liga auswählen');

                    $select = new HTML('select');
                    $select->addAttribut('id', 'liga');
                    $select->addAttribut('name', 'liga');

                    $default = new HTML('option');
                    $default->addAttribut('value', '0');
                    $default->addAttribut('selected');
                    $default->addInhalt('FriendlyWar');
                    $select->addInhalt($default);

                    $sql = "SELECT
                                ID,
                                Name
                            FROM
                                clanwar_liga
                            ORDER BY
                                Name ASC;";
                    $ligen = new Query($sql);
                    if($ligen->error())
                    {
                        die("<pre>".$ligen->getError()."</pre>\n");
                    }
                    while($row = $ligen->fetch())
                    {
                        $option = new HTML('option');
                        $option->addAttribut('value', $row['ID']);
                        $option->addInhalt($row['Name']);
                        $select->addInhalt($option);
                    }

                    $eintrag->addInhalt($label);
                    $eintrag->addInhalt($select);
                    $liste->addInhalt($eintrag);

                    $eintrag = new HTML('li');

                    $submit = new HTMLempty('input');
                    $submit->addAttribut('type', 'submit');
                    $submit->addAttribut('name', 'submit');
                    $submit->addAttribut('value', 'Liga auswählen');

                    $reset = new HTMLempty('input');
                    $reset->addAttribut('type', 'reset');
                    $reset->addAttribut('name', 'submit');
                    $reset->addAttribut('value', 'Daten zurücksetzen');

                    $sessid = new HTMLempty('input');
                    $sessid->addAttribut('type', 'hidden');
                    $sessid->addAttribut('name', session_name());
                    $sessid->addAttribut('value', session_id());

                    $eintrag->addInhalt($submit);
                    $eintrag->addInhalt($reset);
                    $eintrag->addInhalt($sessid);
                    $liste->addInhalt($eintrag);

                    $formular->addInhalt($liste);
                    $formular->ausgeben();
                }
                break;
            default:
                $formular = new HTML('form');
                $formular->addAttribut('method', 'post');
                $formular->addAttribut('action', 'index.php?section=admin'.
                                                 '&site=clanwar'.
                                                 '&action=add');
                $formular->addAttribut('class', 'formular');
                // Die XML-Datei wurde zu breit, da hab ich den Quellcode
                // umgebrochen

                $überschrift = new HTML('p');
                $überschrift->addInhalt('Neuen Clanwar hinzufügen');
                $formular->addInhalt($überschrift);
                // Überschrift fertig

                $liste = new HTML('ol');

                $reihe = new HTML('li');

                $label = new HTML('label');
                $label->addAttribut('for','spiel');
                $label->addInhalt('Spiel auswählen');

                $select = new HTML('select');
                $select->addAttribut('id', 'spiel');
                $select->addAttribut('name', 'spiel');

                $default = new HTML('option');
                $default->addAttribut('value', '0');
                $default->addAttribut('selected');
                $default->addInhalt('Bitte wählen');
                $select->addInhalt($default);

                $sql = "SELECT
                            ID,
                            Name
                        FROM
                            clanwar_spiel
                        ORDER BY
                            Name ASC;";
                $spiele = new Query($sql);
                if($spiele->error())
                {
                    die("<pre>".$spiele->getError()."</pre>\n");
                }
                while($row = $spiele->fetch())
                {
                    $option = new HTML('option');
                    $option->addAttribut('value', $row['ID']);
                    $option->addInhalt($row['Name']);
                    $select->addInhalt($option);
                }

                $eintrag->addInhalt($label);
                $eintrag->addInhalt($select);
                $liste->addInhalt($eintrag);

                $eintrag = new HTML('li');

                $submit = new HTMLempty('input');
                $submit->addAttribut('type', 'submit');
                $submit->addAttribut('name', 'submit');
                $submit->addAttribut('value', 'Spiel auswählen');

                $reset = new HTMLempty('input');
                $reset->addAttribut('type', 'reset');
                $reset->addAttribut('name', 'submit');
                $reset->addAttribut('value', 'Daten zurücksetzen');

                $sessid = new HTMLempty('input');
                $sessid->addAttribut('type', 'hidden');
                $sessid->addAttribut('name', session_name());
                $sessid->addAttribut('value', session_id());

                $eintrag->addInhalt($submit);
                $eintrag->addInhalt($reset);
                $eintrag->addInhalt($sessid);
                $liste->addInhalt($eintrag);

                $formular->addInhalt($liste);
                $formular->ausgeben();
                break;
        }
        break;
?>