summaryrefslogtreecommitdiff
path: root/www-ssl/admin/tshirt.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-06-01 15:02:00 +0200
committerPhilip Häusler <msquare@notrademark.de>2011-06-01 15:02:00 +0200
commite050c0dc7f4c70b13596f8e940a31a9678bb3b52 (patch)
treece222f80b4c02d48c1990392627383f63a08a6e9 /www-ssl/admin/tshirt.php
parenta537f4bf73101c467af3b01db32fcdb9fd0a91ce (diff)
bootstrapping
Diffstat (limited to 'www-ssl/admin/tshirt.php')
-rw-r--r--www-ssl/admin/tshirt.php55
1 files changed, 29 insertions, 26 deletions
diff --git a/www-ssl/admin/tshirt.php b/www-ssl/admin/tshirt.php
index 6fc3551e..9a8e7010 100644
--- a/www-ssl/admin/tshirt.php
+++ b/www-ssl/admin/tshirt.php
@@ -1,21 +1,20 @@
<?php
+require_once ('../bootstrap.php');
$title = "T-Shirt-Ausgabe";
$header = "T-Shirt-Ausgabe f&uuml;r aktiven Engel";
-include ("../../../camp2011/includes/header.php");
-include ("../../../camp2011/includes/funktion_db_list.php");
+include ("includes/header.php");
+include ("includes/funktion_db_list.php");
+If (IsSet ($_GET["aktiv"])) {
-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 />";
- }
+ $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 />
@@ -24,7 +23,9 @@ Hinter diesem erscheint ein Link, &uuml;ber den man eintragen kann, dass der Eng
Liste aller aktiven Engel:
<?php
-$SQL = "SELECT * FROM `User` WHERE (`Aktiv`='1') ORDER BY `Nick` ASC";
+
+
+$SQL = "SELECT * FROM `User` WHERE (`Aktiv`='1') ORDER BY `Nick` ASC";
$Erg = mysql_query($SQL, $con);
$rowcount = mysql_num_rows($Erg);
@@ -37,23 +38,25 @@ $rowcount = mysql_num_rows($Erg);
<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";
+
+
+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 ("../../../camp2011/includes/footer.php");
+include ("includes/footer.php");
?>