engelsystem/includes/sys_lang.php

27 lines
737 B
PHP
Raw Normal View History

2011-06-01 12:13:39 +02:00
<?php
2011-06-01 18:23:01 +02:00
function Get_Text($TextID, $NoError = false) {
global $con, $error_messages, $debug;
2011-06-01 18:23:01 +02:00
if (!isset ($_SESSION['Sprache']))
$_SESSION['Sprache'] = "EN";
if ($_SESSION['Sprache'] == "")
$_SESSION['Sprache'] = "EN";
if (isset ($_GET["SetLanguage"]))
$_SESSION['Sprache'] = $_GET["SetLanguage"];
2011-06-01 18:23:01 +02:00
$SQL = "SELECT * FROM `Sprache` WHERE TextID=\"$TextID\" AND Sprache ='" . $_SESSION['Sprache'] . "'";
@ $Erg = mysql_query($SQL, $con);
2011-06-01 18:23:01 +02:00
if (mysql_num_rows($Erg) == 1)
return (@ mysql_result($Erg, 0, "Text"));
elseif ($NoError && !$debug) return "";
else {
return "Error Data, '$TextID' found " . mysql_num_rows($Erg) . "x";
}
}
2011-06-01 18:23:01 +02:00
function Print_Text($TextID, $NoError = false) {
echo Get_Text($TextID, $NoError);
}
?>