You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
737 B
PHTML
27 lines
737 B
PHTML
14 years ago
|
<?php
|
||
14 years ago
|
function Get_Text($TextID, $NoError = false) {
|
||
|
global $con, $error_messages, $debug;
|
||
17 years ago
|
|
||
14 years ago
|
if (!isset ($_SESSION['Sprache']))
|
||
|
$_SESSION['Sprache'] = "EN";
|
||
|
if ($_SESSION['Sprache'] == "")
|
||
|
$_SESSION['Sprache'] = "EN";
|
||
|
if (isset ($_GET["SetLanguage"]))
|
||
|
$_SESSION['Sprache'] = $_GET["SetLanguage"];
|
||
17 years ago
|
|
||
14 years ago
|
$SQL = "SELECT * FROM `Sprache` WHERE TextID=\"$TextID\" AND Sprache ='" . $_SESSION['Sprache'] . "'";
|
||
|
@ $Erg = mysql_query($SQL, $con);
|
||
17 years ago
|
|
||
14 years ago
|
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";
|
||
|
}
|
||
|
}
|
||
17 years ago
|
|
||
14 years ago
|
function Print_Text($TextID, $NoError = false) {
|
||
|
echo Get_Text($TextID, $NoError);
|
||
|
}
|
||
17 years ago
|
?>
|