summaryrefslogtreecommitdiff
path: root/www-ssl/admin/user.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-22 20:19:48 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-22 20:19:48 +0000
commit93e16eeb4e09935e6ef8b12cc575686c051cc573 (patch)
treefb113bbf9304d871907f3cfac790bc2d5f20a430 /www-ssl/admin/user.php
parentddda2f63f787814d86354700d748f48b8f63bbb0 (diff)
Hometown feld hinzugefuegt
git-svn-id: svn://svn.cccv.de/engel-system@87 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/admin/user.php')
-rwxr-xr-xwww-ssl/admin/user.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/www-ssl/admin/user.php b/www-ssl/admin/user.php
index 7b7b2949..6e182ca1 100755
--- a/www-ssl/admin/user.php
+++ b/www-ssl/admin/user.php
@@ -62,6 +62,8 @@ if (!IsSet($_GET["enterUID"]))
if( strlen( mysql_result($Erg, $n, "email"))>0)
echo "\n\t\temail: <a href=\"mailto:".mysql_result($Erg, $n, "email")."\">".
mysql_result($Erg, $n, "email")."</a><br>";
+ if( strlen( mysql_result($Erg, $n, "Hometown"))>0)
+ echo "\n\t\tHometown: ". mysql_result($Erg, $n, "Hometown"). "<br>";
if( strlen( mysql_result($Erg, $n, "lastLogIn"))>0)
echo "\n\t\tlastLogIn: ". mysql_result($Erg, $n, "lastLogIn"). "<br>";
echo "</td>\n";
@@ -207,6 +209,10 @@ else
echo " checked";
echo ">R \n";
echo "</td></tr>\n";
+
+ echo " <tr><td>Hometown</td><td>".
+ "<input type=\"text\" size=\"40\" name=\"Hometown\" value=\"".
+ mysql_result($Erg, 0, "Hometown")."\"></td></tr>\n";
} //IF TYPE
}
if( $_GET["Type"] == "Secure" )
@@ -247,7 +253,7 @@ else
// Ende Formular
echo "</td></tr>\n";
- echo "</table>\n";
+ echo "</table>\n<br>\n";
echo "<input type=\"hidden\" name=\"enterUID\" value=\"". $_GET["enterUID"]. "\">\n";
echo "<input type=\"submit\" value=\"sichern...\">\n";
echo "</form>";