summaryrefslogtreecommitdiff
path: root/www-ssl/admin/tshirt.php
blob: 9a8e70102d814064d6908f56010c3ff64610bdaa (plain)
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
<?php
require_once ('../bootstrap.php');

$title = "T-Shirt-Ausgabe";
$header = "T-Shirt-Ausgabe f&uuml;r aktiven Engel";
include ("includes/header.php");
include ("includes/funktion_db_list.php");

If (IsSet ($_GET["aktiv"])) {

	$SQL = "UPDATE `User` SET `Tshirt`='1' WHERE `UID`='" . $_GET["aktiv"] . "' limit 1";
	$Erg = mysql_query($SQL, $con);
	if ($Erg == 1) {
	} else {
		echo "Fehler beim speichern bei Engel " . UID2Nick($_GET["aktive"]) . "<br />";
	}
}
?>

&Uuml;ber die Suchen-Funktion des Browsers kann diese Liste schnell nach einem Nick abgesucht werden.<br />
Hinter diesem erscheint ein Link, &uuml;ber den man eintragen kann, dass der Engel sein T-Shirt erhalten hat.<br /><br />

Liste aller aktiven Engel:

<?php


$SQL = "SELECT * FROM `User` WHERE (`Aktiv`='1') ORDER BY `Nick` ASC";
$Erg = mysql_query($SQL, $con);

$rowcount = mysql_num_rows($Erg);
?>
<table width="100%" class="border" cellpadding="2" cellspacing="1">
        <tr class="contenttopic">
   <td>Nick</td>
   <td>Aktiv?</td>
   <td>Gr&ouml;sse</td>
   <td>T-Shirt ausgeben:</td>
  </td>
<?php


for ($i = 0; $i < $rowcount; $i++) {
	echo "\t<tr class=\"content\">\n";
	$eUID = mysql_result($Erg, $i, "UID");
	echo "\t\t<td>" . UID2Nick($eUID) . "</td>\n";
	echo "\t\t<td>" . mysql_result($Erg, $i, "Aktiv") . "</td>\n";
	echo "\t\t<td>" . mysql_result($Erg, $i, "Size") . "</td>\n";

	if (mysql_result($Erg, $i, "Tshirt") == "1") {
		echo "\t\t<td>bereits erhalten</td>";
	} else {
		echo "\t\t<td><a href=\"./tshirt.php?aktiv=$eUID\">XXXXXXXX</a></td>";
	}
	echo "\t</tr>\n";
}

echo "</table>";

include ("includes/footer.php");
?>