Hi Leute ich mal wieder das komische ist php mag nicht in meine Datenbank schreiben warum weis ich auch nicht hier mal der Code von den Dateien:
Config.php
db_connect.php
send.php
Ich hab keine Ahnung mehr es zeigt mir keine Fehlermeldung oder sonstwas garnichts..
Config.php
PHP-Code:
<?php
error_reporting(E_ALL);
$db_host = "localhost";
$db_user = "root";
$db_pass = "halflife";
$db_database = "news";
$db_table = "news";
$lang = "ge";
If ($lang == "ge")
{
Include ("language/ge.php");
}
elseif($lang == "eng")
{
Include ("language/eng.php");
}
db_connect.php
PHP-Code:
<?php
error_reporting(E_ALL);
Include ("config.php");
mysql_connect($db_host, $db_user, $db_pass) or die ("$lan_1");
mysql_select_db($db_database) or die ("$lan_2");
?>
send.php
PHP-Code:
<?php
error_reporting(E_ALL);
if(isset($T1) && isset($T2)) {
include ("db_connect.php");
$T1 = $_POST["T1"];
$T2 = $_POST["T2"];
$eintrag = "INSERT INTO news (name, nachricht) VALUES ('$T1', '$T2')";
$eintragen = mysql_query($eintrag);
}
include ("config.php");
Print "$lang_8";
?>
Ich hab keine Ahnung mehr es zeigt mir keine Fehlermeldung oder sonstwas garnichts..
Kommentar