summaryrefslogtreecommitdiff
path: root/www-ssl
diff options
context:
space:
mode:
Diffstat (limited to 'www-ssl')
-rwxr-xr-xwww-ssl/admin/user.php7
-rwxr-xr-xwww-ssl/makeuser.php4
2 files changed, 7 insertions, 4 deletions
diff --git a/www-ssl/admin/user.php b/www-ssl/admin/user.php
index 78701538..98495b99 100755
--- a/www-ssl/admin/user.php
+++ b/www-ssl/admin/user.php
@@ -26,7 +26,10 @@ if (!IsSet($_GET["enterUID"]))
?><table width="100%" class="border" cellpadding="2" cellspacing="1">
<tr class="contenttopic">
- <td><a href="<?PHP echo $_SERVER["PHP_SELF"]; ?>?OrderBy=Nick">Nick</a></td>
+ <td>
+ <a href="<?PHP echo $_SERVER["PHP_SELF"]; ?>?OrderBy=Nick">Nick</a> |
+ <a href="<?PHP echo $_SERVER["PHP_SELF"]; ?>?OrderBy=CreateDate">CreateDate</a>
+ </td>
<td><a href="<?PHP echo $_SERVER["PHP_SELF"]; ?>?OrderBy=Name">Name</a></td>
<td><a href="<?PHP echo $_SERVER["PHP_SELF"]; ?>?OrderBy=Vorname">Vorname</a></td>
<td><a href="<?PHP echo $_SERVER["PHP_SELF"]; ?>?OrderBy=Alter">Alter</a></td>
@@ -55,7 +58,7 @@ if (!IsSet($_GET["enterUID"]))
for ($n = 0 ; $n < $Zeilen ; $n++) {
echo "<tr class=\"content\">\n";
- echo "\t<td>".mysql_result($Erg, $n, "Nick"). "</td>\n";
+ echo "\t<td>".mysql_result($Erg, $n, "Nick"). "<br>(Create: ". mysql_result($Erg, $n, "CreateDate"). ")</td>\n";
echo "\t<td>".mysql_result($Erg, $n, "Name")."</td>\n";
echo "\t<td>".mysql_result($Erg, $n, "Vorname")."</td>\n";
echo "\t<td>".mysql_result($Erg, $n, "Alter")."</td>\n";
diff --git a/www-ssl/makeuser.php b/www-ssl/makeuser.php
index 6bf630de..b02f6923 100755
--- a/www-ssl/makeuser.php
+++ b/www-ssl/makeuser.php
@@ -53,7 +53,7 @@ if( isset($_POST["send"]))
"`ICQ`, ". "`jabber`, ".
"`Size`, ". "`Passwort`, ".
"`Art` , ". "`kommentar`, ".
- "`Hometown` ) ".
+ "`Hometown`,". "`CreateDate` ) ".
"VALUES ( ".
"'". $_POST["Nick"]. "', ". "'". $_POST["Name"]. "', ".
"'". $_POST["Vorname"]. "', ". $_POST["Alter"]. ", ".
@@ -62,7 +62,7 @@ if( isset($_POST["send"]))
"'". $_POST["ICQ"]. "', ". "'". $_POST["jabber"]. "', ".
"'". $_POST["Size"]. "', ". "'". $_POST["Passwort"]. "', ".
"'". $_POST["Art"]. "', ". "'". $_POST["kommentar"]. "', ".
- "'". $_POST["Hometown"]. "' );";
+ "'". $_POST["Hometown"]. "',". "NOW());";
$Erg = mysql_query($SQL, $con);
if ($Erg != 1)