diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-11-06 17:14:25 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-11-06 17:14:25 +0000 |
commit | 866c47ec603595e8fe67da5f0e5d162a70b1f7b4 (patch) | |
tree | ef2b85462576150f017ba6bd53ace13dc60dc510 /www-ssl/inc/funktion_lang.php | |
parent | fbc8e11b91b0565ae5d23472fc4e5bfc7d879939 (diff) |
move files
git-svn-id: svn://svn.cccv.de/engel-system@20 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc/funktion_lang.php')
-rwxr-xr-x | www-ssl/inc/funktion_lang.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/www-ssl/inc/funktion_lang.php b/www-ssl/inc/funktion_lang.php new file mode 100755 index 00000000..9a6dc220 --- /dev/null +++ b/www-ssl/inc/funktion_lang.php @@ -0,0 +1,30 @@ +<?PHP + +function Get_Text ($TextID) +{ +if( !isset($_SESSION['Sprache'])) $_SESSION['Sprache'] = "EN"; +if( $_SESSION['Sprache']=="") $_SESSION['Sprache']="EN"; + +GLOBAL $con; +$SQL = "SELECT * FROM `Sprache` WHERE TextID=\"$TextID\" AND Sprache ='".$_SESSION['Sprache']."'"; +@$Erg = mysql_query($SQL, $con); +if(!mysql_error($con)) + return (@mysql_result($Erg, 0, "Text")); +else + return "Error Data"; + +} + +function Print_Text ($TextID){ +GLOBAL $con; + +$SQL = "SELECT * FROM `Sprache` WHERE TextID=\"$TextID\" AND Sprache ='".$_SESSION['Sprache']."'"; +@$Erg = mysql_query($SQL, $con); + +if(!mysql_error($con)) + echo nl2br(@mysql_result($Erg, 0, "Text")); +else + echo "Error Data"; +} + +?> |