summaryrefslogtreecommitdiff
path: root/www-ssl/inc/funktion_db.php
diff options
context:
space:
mode:
Diffstat (limited to 'www-ssl/inc/funktion_db.php')
-rw-r--r--www-ssl/inc/funktion_db.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/www-ssl/inc/funktion_db.php b/www-ssl/inc/funktion_db.php
index e0e5d98e..06decc47 100644
--- a/www-ssl/inc/funktion_db.php
+++ b/www-ssl/inc/funktion_db.php
@@ -5,7 +5,8 @@ if( !function_exists("db_query"))
function Ausgabe_Daten($SQL)
{
global $con;
-
+
+
$Erg = mysql_query($SQL, $con);
echo mysql_error($con);
@@ -46,7 +47,7 @@ if( !function_exists("db_query"))
$Where = substr( $SQL, $Where_Start);
// sicherheitsprüfung !!!!
- if( $Where_Start == 0) die("<h1>DIE: kein WHERE im SQL ausdruck gefunden</h1>");
+ if( $Where_Start == 0) $Where = ";";
//Daten auslesen
$Diff .= Ausgabe_Daten( "SELECT * FROM $Table $Where");
@@ -77,6 +78,9 @@ if( !function_exists("db_query"))
$querry_erg = mysql_query($SQL, $con);
}
+ //abschneiden wenn zu lang
+ if( strlen( $Diff) > 5120) $Diff = "too mutch (len ". strlen( $Diff). ")";
+
//LOG commands in DB
$SQL_SEC = "INSERT INTO `ChangeLog` ( `UID` , `SQLCommad` , `Commend` ) ".
" VALUES ( ".
@@ -85,9 +89,9 @@ if( !function_exists("db_query"))
"Diff:<br>$Diff', ".
"'". htmlentities( $comment, ENT_QUOTES). "' );";
$erg = mysql_query($SQL_SEC, $con);
+echo "##$erg";
echo mysql_error($con);
-
-
+echo "##";
return $querry_erg;
}//function db_query(
}