<?php
include("kopf.php");
?>
<td bgcolor="C0C0C0" width="570" height="436" style="border: 1px solid #000000" valign="top">
<center><table width="570" border="0" valign="top">
<tr>
<td width="505">
<?php
include(".php");
include(".php");
$datum=date("Y-m-d");
echo "blödmann1";
if (isset($_POST["thema"]) && isset($_POST["update"]))
{
echo "blödmann2";
if ($_POST["thema"] == "" or $_POST["update"] == "")
{
echo "<br><br><center>
<table width=500 border=0>
<tr>
<td colspan=2 bgcolor=$tablebg style=\"border: 1px solid #000000\">
<font face=$tablefont size=2><b>Fehler bei der Bearbeitung aufgetreten</b></font>
</td>
</tr>
</table>";
}
else
{
echo "blödmann3";
$verbindung = @mysql_connect("$sqlhost","$sqluser","$sqlpass");
if (!$verbindung)
{
echo "blödmann4";
echo "Verbindung zur Datenbank war nicht möglich!\n";
exit;
}
echo "blödmann5";
mysql_select_db($sqldb,$verbindung);
echo "blödmann6";
$daten = "INSERT INTO $sqltable (datum,thema,update)VALUES ('$datum','$thema','$update')";
$result = mysql_query($daten,$verbindung) or die(mysql_error());
echo "blödmann7";
echo "<center><table width=500 border=0>
<tr>
<td bgcolor=$tablebg style=\"border: 1px solid #000000\"><font face=$tablefont size=2><b>Der Eintrag wurde gespeichert</td>
</tr>
</table>";
}
}
?>
</td>
</tr>
</table></center>
</td>
<?php
include("fuss.php");
?>