我想使用簡單的表單向數據庫添加註釋。無論出於何種原因,當我使用表單時,我似乎無法獲得表格更新。我沒有收到任何錯誤,只是之後刷新表時沒有任何反應。換句話說,即使在提交表格之後,該表格仍然有0個條目。這裏是我的代碼:MySQL的PHP表格插入值的表格?
<?php
session_start();
$connection = mysql_connect("server", "username", "password");
if ($connection->connect_error) {
die('Connect Error: ' . $connection->connect_error);
}
// Selecting Database
mysql_select_db("database", $connection) or die(mysql_error());
$name = $_POST['name'];
$title = $_POST['title'];
$comments = $_POST['comments'];
$sql = "INSERT INTO comments (Name, Title, Comments)
VALUES ('$name', '$title', '$comments')";
mysql_close($connection); // Closing Connection
?>
謝謝你的幫助!
您實際上並未執行查詢。 – 2014-12-01 18:21:34
我不敢相信我錯過了。非常感謝! – user3533863 2014-12-01 18:26:50