diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-04-17 09:36:27 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-04-17 09:36:27 +0000 |
commit | ea99c4fd4bbea640f3404ad697b7d27040315ab7 (patch) | |
tree | 717f91e5a6817b1aa14cd2a878a13c6240f9c978 /www-ssl/inc/funktion_db.php | |
parent | 0006883dc9bd7d4f69e5fdb83def42cfe1382cac (diff) |
fehler abfangen
git-svn-id: svn://svn.cccv.de/engel-system@118 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc/funktion_db.php')
-rw-r--r-- | www-ssl/inc/funktion_db.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/www-ssl/inc/funktion_db.php b/www-ssl/inc/funktion_db.php index ff85d5cd..329e9c29 100644 --- a/www-ssl/inc/funktion_db.php +++ b/www-ssl/inc/funktion_db.php @@ -44,6 +44,9 @@ if( !function_exists("db_query")) //WHERE ermitteln $Where_Start = strpos( $SQL, "WHERE"); $Where = substr( $SQL, $Where_Start); + + // sicherheitsprüfung !!!! + if( $Where_Start == 0) die("<h1>DIE: kein WHERE im SQL ausdruck gefunden</h1>"); //Daten auslesen $Diff .= Ausgabe_Daten( "SELECT * FROM $Table $Where"); @@ -54,6 +57,10 @@ if( !function_exists("db_query")) //Daten auslesen $Diff .= Ausgabe_Daten( "SELECT * FROM $Table $Where"); } + elseif( strpos( "#$SQL", "INSERT") > 0) + { + echo "##### LOG: INSERT #####"; + } else { //execute command |