<link href="style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
a:link {
color:#FF0000;
text-decoration:none;
}
a:hover {
color:#990000;
text-decoration:none;
}
a:visited {
color:#990000;
text-decoration:none;
}
-->
</style>
<?php
//Hier die Verbindung für das Forum aufbauen
$Host = "localhost";
$User = "";
$Password = "";
$DBName = "superdrummer";
$TableName = "foren";
$Link = mysql_connect($Host, $User, $Password);
$foren_title = $_POST['foren_title'];
$foren_sub = $_POST['foren_sub'];
$foren_autor = $_POST['foren_autor'];
$time = date("d.m.Y @ H:i");
if(isset($foren_title) && isset($foren_sub) && isset($foren_autor)){
$Query="INSERT into
$TableName
VALUES
('','','".$foren_title."','".$foren_sub."','".$foren_autor."')";
mysql_query($Query) or die(mysql_error());
echo"<b>Das Theme wurde erfolgreich erstellt!";
} else {
echo"Bitte füllen Sie alle Felder aus.";
}
?>