Maniac
Erfahrenes Mitglied
Mach doch mal eine Fehlerausgabe von Mysql dazu:
PHP:
mysql_error();
PHP:
if( isset( $_POST ) )
{
$sql = '
INSERT INTO
`conferences`
(
`time`,
`topic`,
`host`,
`hostmail`,
`duration`,
`language`
)
VALUES
(
"'.$_POST['time'].'",
"'.$_POST['topic'].'",
"'.$_POST['host'].'",
"'.$_POST['hostmail'].'",
"'.$_POST['duration'].'",
"'.$_POST['language'].'",
NOW()
)';
$result = mysql_query($sql) or die("$sql<hr />".mysql_error());
if( !$result )
{
echo 'Fehler beim eintragen der Konferenz';
}
else
{
echo 'Die Konferenz wurde erfolgreich eingetragen';
}
}