表单POST进入URL?

时间:2014-04-22 21:21:02

标签: html

我的POST遇到了一些问题。之前它运行良好,但现在它似乎进入了当前页面的URL。

这就是我的表格:

<form action="submit/topic.php" method="post">
<input type="text" name="topic" style="width:800px;" placeholder="Emne"><br><br>
<textarea style="width:804px; height:150px;" name="message"></textarea><br>
<input type="submit" value="Opret tråd">
</form>

在提交时,它不会重定向到submit/topic.php,而是保留在同一网站上,并将POST添加到当前网址index?topic=blabla&message=blabla

我正在使用NicEdit为我的textarea和其他形式工作正常。例如,这一个:

<form action="submit/login.php" method="post">
<input type="text" name="username" placeholder="Brugernavn"><br>
<input type="password" name="password" placeholder="Kodeord"><br>
<input type="submit" value="Log Ind">
</form>

我很抱歉,如果这是一个新手问题,但这个问题真的让我烦恼。

0 个答案:

没有答案