我的 html 页面中有这个非常基本的表单。
<form action="post.php" method="post">
Message: <input type="text" name="message" />
<input type="submit" name="submit" value="send">
</form>
然后将数据存储到我的数据库后端。
id 也想通过 URL 栏提交数据,比如这个。
http://localhost/test.php?message=test&submit=send
但是当我尝试执行上述操作时,什么也没有发生。
我怎样才能实现这种方法?
[编辑] 我的 post.php
<?php
include_once("connect.php");
if (isset($_GET['submit'])) {
if ($_GET['message'] == "") {
echo " no input, return";
exit();
}
else {
$message = $_GET['message'];
mysql_query("insert into data (message) values ('$message')");
header ('location:index.php');
exit ();
}
}
else {
echo "invalid";
}
?>