diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-09-10 17:25:43 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-09-10 17:25:43 +0000 |
commit | 310c2ce98fc8c0e94559c9ed8587101d92f6e853 (patch) | |
tree | 7093065a133e434fb7e551803e8700661d04c5bb /admin/tshirt.php |
add total system
git-svn-id: svn://svn.cccv.de/engel-system@1 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'admin/tshirt.php')
-rwxr-xr-x | admin/tshirt.php | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/admin/tshirt.php b/admin/tshirt.php new file mode 100755 index 00000000..3bdd1902 --- /dev/null +++ b/admin/tshirt.php @@ -0,0 +1,60 @@ +<?PHP + +$title = "T-Shirt-Ausgabe"; +$header = "T-Shirt-Ausgabe für aktiven Engel"; +include ("./inc/header.php"); +include ("./inc/funktion_db_list.php"); +include ("./inc/funktion_user.php"); + + +If (IsSet($aktiv)) { + + $SQL="Update User set Tshirt=\"1\" where UID=\"$aktiv\" limit 1"; + $Erg = mysql_query($SQL, $con); + if ($Erg == 1) { + } else { + echo "Fehler beim speichern bei Engel ".UID2Nick($eUID)."<br>"; + } +} + +?> + +Über die Suchen-Funktion des Browsers kann diese Liste schnell nach einem Nick abgesucht werden.<br> +Hinter diesem erscheint ein Link, über den man eintragen kann, dass der Engel sein T-Shirt erhalten hat.<br><br> + +Liste aller aktiven Engel: + +<? +$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össe</td> + <td>T-Shirt ausgeben:</td> + </td> +<? +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 ("./inc/footer.php"); +?> + |