summaryrefslogtreecommitdiff
path: root/www-ssl/admin/userArrived.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/userArrived.php
parenta537f4bf73101c467af3b01db32fcdb9fd0a91ce (diff)
bootstrapping
Diffstat (limited to 'www-ssl/admin/userArrived.php')
-rw-r--r--www-ssl/admin/userArrived.php65
1 files changed, 32 insertions, 33 deletions
diff --git a/www-ssl/admin/userArrived.php b/www-ssl/admin/userArrived.php
index a8fdb71e..93857d2e 100644
--- a/www-ssl/admin/userArrived.php
+++ b/www-ssl/admin/userArrived.php
@@ -1,54 +1,53 @@
<?php
+require_once ('../bootstrap.php');
$title = "Engel Arrived";
$header = "Engel was arrived";
-include ("../../../camp2011/includes/header.php");
-include ("../../../camp2011/includes/funktion_db_list.php");
-
-
-If (IsSet($_GET["arrived"])) {
-
- $SQL="UPDATE `User` SET `Gekommen`='1' WHERE `UID`='". $_GET["arrived"]. "' limit 1";
- $Erg = db_query($SQL, "Set User as Gekommen");
- if ($Erg == 1) {
- echo "<h2>". Get_Text("pri_userArrived_WriteOK"). " \"". UID2Nick($_GET["arrived"]). "\"</h2>";
- } else {
- echo "<h1>". Get_Text("pri_userArrived_WriteError"). " \"". UID2Nick($_GET["arrived"]). "\"</h1>";
- }
+include ("includes/header.php");
+include ("includes/funktion_db_list.php");
+
+If (IsSet ($_GET["arrived"])) {
+
+ $SQL = "UPDATE `User` SET `Gekommen`='1' WHERE `UID`='" . $_GET["arrived"] . "' limit 1";
+ $Erg = db_query($SQL, "Set User as Gekommen");
+ if ($Erg == 1) {
+ echo "<h2>" . Get_Text("pri_userArrived_WriteOK") . " \"" . UID2Nick($_GET["arrived"]) . "\"</h2>";
+ } else {
+ echo "<h1>" . Get_Text("pri_userArrived_WriteError") . " \"" . UID2Nick($_GET["arrived"]) . "\"</h1>";
+ }
}
-echo Get_Text("pri_userArrived_Text1"). "<br />";
-echo Get_Text("pri_userArrived_Text2"). "<br /><br />";
+echo Get_Text("pri_userArrived_Text1") . "<br />";
+echo Get_Text("pri_userArrived_Text2") . "<br /><br />";
echo Get_Text("pri_userArrived_TableToppic");
-$SQL = "SELECT * FROM `User` ORDER BY `Nick` ASC";
+$SQL = "SELECT * FROM `User` ORDER BY `Nick` ASC";
$Erg = mysql_query($SQL, $con);
$rowcount = mysql_num_rows($Erg);
echo "<table width=\"100%\" class=\"border\" cellpadding=\"2\" cellspacing=\"1\">\n";
echo "\t<tr class=\"contenttopic\">\n";
-echo "\t\t<td>". Get_Text("pri_userArrived_TableTD_Nick"). "</td>\n";
-echo "\t\t<td>". Get_Text("pri_userArrived_TableTD_ArrivedShow"). "</td>\n";
-echo "\t\t<td>". Get_Text("pri_userArrived_TableTD_ArrivedSet"). "</td>\n";
+echo "\t\t<td>" . Get_Text("pri_userArrived_TableTD_Nick") . "</td>\n";
+echo "\t\t<td>" . Get_Text("pri_userArrived_TableTD_ArrivedShow") . "</td>\n";
+echo "\t\t<td>" . Get_Text("pri_userArrived_TableTD_ArrivedSet") . "</td>\n";
echo "\t</td>\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, "Gekommen")."</td>\n";
-
- if (mysql_result($Erg, $i, "Gekommen") =="1")
- {
- echo "\t\t<td>". Get_Text("pri_userArrived_TableEntry_Arrived"). "</td>";
- } else {
- echo "\t\t<td><a href=\"./userArrived.php?arrived=$eUID\">". Get_Text("pri_userArrived_TableEntry_Set"). "</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, "Gekommen") . "</td>\n";
+
+ if (mysql_result($Erg, $i, "Gekommen") == "1") {
+ echo "\t\t<td>" . Get_Text("pri_userArrived_TableEntry_Arrived") . "</td>";
+ } else {
+ echo "\t\t<td><a href=\"./userArrived.php?arrived=$eUID\">" . Get_Text("pri_userArrived_TableEntry_Set") . "</a></td>";
+ }
+ echo "\t</tr>\n";
}
echo "</table>";
-include ("../../../camp2011/includes/footer.php");
+include ("includes/footer.php");
?>