我在问上一个问题后修复了我的代码,但现在我在标题中提到了错误行。那么这里是代码,所以你可以找出或至少帮助解决问题所在:
<html>
<head>
<title>test3</title>
</head>
<body>
<?php
$verbindung = mysql_connect("localhost, vanille")
or die ("Fehler");
mysql_select_db("test3")
or die ("Verbindung nicht möglich...");
$datum = $_POST["datum"];
$autor = $_POST["autor"];
$newstext = $_POST["newstext"];
if($datum == "" or $autor == "" or $newstext == "") {
echo "FAIL";
} else {
$eintrag = "INSERT INTO test3
(datum, autor, newstext)
VALUES
('$datum', '$autor', '$newstext')";
}
mysql_close($verbindung);
?>
</body>
</html>
答案 0 :(得分:2)
只需用给定代码替换您的代码
<html>
<head>
<title>test3</title>
</head>
<body>
<?php
$verbindung = mysql_connect("localhost","vanille")
or die ("Fehler");
mysql_select_db("test3")
or die ("Verbindung nicht möglich...");
$datum = $_POST["datum"];
$autor = $_POST["autor"];
$newstext = $_POST["newstext"];
if($datum == "" or $autor == "" or $newstext == "") {
echo "FAIL";
} else {
$eintrag = "INSERT INTO test3
(datum, autor, newstext)
VALUES
('$datum', '$autor', '$newstext')";
}
mysql_close($verbindung);
?>
</body>
</html>