diff options
Diffstat (limited to 'www-ssl/inc/funktion_user.php')
-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"; } - - ?> |