任何人都可以看到为什么无法连接/写入mysql数据库的原因?我无法确定哪个,但我知道在提交表单时数据没有输入。它只是路由到一个空白屏幕。
<html>
<div style="width: 330px; height: 130px; overflow: auto;">
<form STYLE="color: #f4d468;" action="send_post.php" method="post">
Category: <select STYLE="color: #919191; font-family: Veranda;
font-weight: bold; font-size: 10px; background-color: #000000;"
name="category">
<option value="blah1">blah1</option>
<option value="blah2">blah2</option>
<option value="blah3">blah3</option>
<option value="blah4">blah4</option>
</select> <br>
<textarea overflow: scroll; rows="4" cols="60" STYLE="color:
#919191; font-family: Veranda; font-weight: bold; font-size: 10px;
background-color: #000000; width:300px; height:80px; margin:0;
padding:0;" name="contents">
</textarea><br>
<input type="submit" STYLE="color: #919191; font-family: Veranda;
font-weight: bold; font-size: 10px; background-color: #000000;"
value="Create Log">
</form>
</div>
</html>
和send_post.php
<?php
//Connecting to sql db.
$connect=mysqli_connect("localhost","username","password","mysqldatabasename");
//Sending form data to sql db.
mysqli_query($connect,"INSERT INTO mytablename (category, contents)
VALUES ('$_POST[category]', '$_POST[contents]')";
?>
我是新手,但我努力研究,现在我陷入了僵局。我已经尝试输入检查连接错误的代码,但我总是得到一个白屏并没有数据库更新。我非常感谢帮助。 (引用还包括在“localhost”,“username”等中吗?)
答案 0 :(得分:1)
似乎是一个简单的语法错误。
在此处缺少结束)
:
mysqli_query($connect,"INSERT INTO mytablename (category, contents) VALUES ('$_POST[category]', '$_POST[contents]')");
mysqli_connect的参数确实需要用引号括起来。您也可能需要认真考虑清理您的输入。这个表格是敞开的。