Source of: tutorial/login-clanwar/liga-add-v2.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
<?php
    case 'add':
        if(isset($_POST['submit']) AND "Liga hinzufügen" == $_POST['submit'])
        {
            if(trim($_POST['name']) == "") OR trim($_POST['url']) == "")
            {
                $p = new HTML('p');
                $p->addInhalt('Bitte geben sie einen gültigen Namen und '.
                              'eine gültige URL an.');
                $p->ausgeben();
            }
            else
            {
                $sql = "INSERT INTO
                            clanwar_liga
                        SET
                            Name = '".addslashes($_POST['name'])."',
                            Url = '".addslashes($_POST['url'])."';";
                $query = new Query($sql);
                if($query->error())
                {
                    die("<pre>".$query->getError()."</pre>\n");
                }
                $ok = new HTML('p');
                $ok->addInhalt('Die Liga wurde gespeichert');
                $ok->ausgeben();
            }
        }
        else
        {
            $formular = new HTML('form');
            $formular->addAttribut('method', 'post');
            $formular->addAttribut('action', 'index.php?section=admin&site=liga&action=add');
            $formular->addAttribut('class', 'formular');

            $überschrift = new HTML('p');
            $überschrift->addInhalt('Neue Liga hinzufügen');

            $formular->addInhalt($überschrift);
            // Überschrift fertig

            $liste = new HTML('ol');

            $eintrag = new HTML('li');

            $label = new HTML('label');
            $label->addAttribut('for','name');
            $label->addInhalt('Name der Liga');
            $eintrag->addInhalt($label);

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

            $eintrag->addInhalt($input);
            $liste->addInhalt($eintrag);
            // Input für Name der Liga fertig

            $eintrag = new HTML('li');

            $label = new HTML('label');
            $label->addAttribut('for','url');
            $label->addInhalt('Url der Liga');
            $eintrag->addInhalt($label);

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

            $eintrag->addInhalt($input);
            $liste->addInhalt($eintrag);
            // Input für URL der Liga fertig

            $eintrag = new HTML('li');

            $submit = new HTMLempty('input');
            $submit->addAttribut('type', 'submit');
            $submit->addAttribut('name', 'submit');
            $submit->addAttribut('value', 'Liga hinzufügen');

            $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(); // nicht vergessen
        }
        break;
?>