mysql utf-8
This commit is contained in:
parent
208c76fcb2
commit
0ee418ffa2
|
@ -3,6 +3,6 @@ include ("../include/funktion_db.php");
|
|||
|
||||
$con = mysql_connect("localhost", "root", "changeme") or die("connection failed");
|
||||
$sel = mysql_select_db("tabel") or die(mysql_error());
|
||||
mysql_query("SET CHARACTER SET utf8;", $sql_connection);
|
||||
mysql_query("SET NAMES 'utf8'", $sql_connection);
|
||||
mysql_query("SET CHARACTER SET utf8;", $con);
|
||||
mysql_query("SET NAMES 'utf8'", $con);
|
||||
?>
|
||||
|
|
|
@ -14,8 +14,7 @@
|
|||
|
||||
if (mysql_num_rows($Erg) == 1)
|
||||
return (@ mysql_result($Erg, 0, "Text"));
|
||||
elseif( $NoError && !$debug)
|
||||
return "";
|
||||
elseif ($NoError && !$debug) return "";
|
||||
else {
|
||||
array_push($error_messages, "Get_Text, '$TextID' found " . mysql_num_rows($Erg) . "x in Sprache Database Table for Language (" . $_SESSION['Sprache'] . ")\n");
|
||||
return "Error Data, '$TextID' found " . mysql_num_rows($Erg) . "x";
|
||||
|
|
|
@ -15,7 +15,7 @@ function ShowMenu($MenuName) {
|
|||
if ((strpos("00$Key", "0$MenuName") > 0) || ((strlen($MenuName) == 0) && (strpos("0$Key", "/") == 0))) {
|
||||
$TempName = Get_Text($Key, true);
|
||||
|
||||
if ((true || $debug) && (strlen($TempName) == 0))
|
||||
if ((true || $debug) && ($TempName == ""))
|
||||
$TempName = "not found: \"$Key\"";
|
||||
|
||||
if ($Entry == "Y") {
|
||||
|
|
Loading…
Reference in New Issue