Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的一个页面中有一个表单,我想让它提交到同一页面。我正在这样做:
<form method="POST" action=".">
但是,当我提交表单时,它会提交到我网站的根目录,而不是表单所在的同一页面。
我知道表单正在提交,因为我尝试暂时将方法更改为 GET,当我提交表单时,URL 显示了 get 变量。
为什么表单没有提交到当前页面?
如果相关,我将 PHP 与 xampp 一起使用。
尝试这个:
<form method="POST" action="">
这就是我所做的
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
我是一个新手,所以如果 Juampi 的答案也有效,我会同意的。