diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-11-20 23:24:10 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-11-20 23:24:10 +0000 |
commit | 6c52da6bf5bbdb1199fac63e7624ddd9473acd89 (patch) | |
tree | a8f7d1b309fc3900122790861044041dcd176db4 /www-ssl/inc | |
parent | 029b1be5f638e48e0d521967d3bf70eb6b383612 (diff) |
augabe der changes erweitert username wird ausgegeben
funtion_user aufgereumt
git-svn-id: svn://svn.cccv.de/engel-system@170 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc')
-rwxr-xr-x | www-ssl/inc/funktion_user.php | 46 |
1 files changed, 17 insertions, 29 deletions
diff --git a/www-ssl/inc/funktion_user.php b/www-ssl/inc/funktion_user.php index f679245d..c98598f8 100755 --- a/www-ssl/inc/funktion_user.php +++ b/www-ssl/inc/funktion_user.php @@ -1,7 +1,8 @@ <?php -function UID2Nick($UID) { - include ("./inc/db.php"); +function UID2Nick($UID) +{ + global $con; $SQL = "SELECT Nick FROM `User` WHERE UID='$UID'"; $Erg = mysql_query($SQL, $con); @@ -19,8 +20,9 @@ function UID2Nick($UID) { } -function TID2Type($TID) { - include ("./inc/db.php"); +function TID2Type($TID) +{ + global $con; $SQL = "SELECT Name FROM `EngelType` WHERE TID='$TID'"; $Erg = mysql_query($SQL, $con); @@ -55,32 +57,20 @@ function ReplaceSmilies($eckig) { return $neueckig; } -function displayavatar($dumdidum) { - include ("./inc/db.php"); - global $displayavatar; +function displayavatar($UID) +{ + global $con; - $asql = "select * from User where UID = $dumdidum"; - $aerg = mysql_query ($asql, $con); - if (($displayavatar<>0) && (mysql_num_rows($Erg)) ) - return (" <img src=\"./inc/avatar/avatar". mysql_result($aerg, 0, "Avatar"). ".gif\">"); + $asql = "select * from User where UID = $UID"; + $aerg = mysql_query ($asql, $con); + if( mysql_num_rows($aerg) ) + if( mysql_result($aerg, 0, "Avatar") > 0) + return (" <img src=\"./inc/avatar/avatar". mysql_result($aerg, 0, "Avatar"). ".gif\">"); } -function Ausgabe_Feld($RID) { -// gibt, nach übergabe der der SchichtID (SID) und der RaumID (RID), -// die eingetragenden und und offenden Schichteintäge zurück - include ("./inc/db.php"); - include ("./inc/config.php"); -//echo "####################", $Erg, "####################<br>"; - - $SQL2 = "SELECT * FROM `Raeume` "; - if ($RID != "") { - $SQL2.= "WHERE (RID = '".$RID."')"; - } - return mysql_query($SQL2, $con); -} - -function UIDgekommen($UID) { - include ("./inc/db.php"); +function UIDgekommen($UID) +{ + global $con; $SQL = "SELECT `Gekommen` FROM `User` WHERE UID='$UID'"; $Erg = mysql_query($SQL, $con); @@ -92,6 +82,4 @@ function UIDgekommen($UID) { return "0"; } - - ?> |