这可能吗?我看过网上似乎找不到答案。
答案 0 :(得分:6)
是的,为什么不
确定您可以发布到同一页面:)
的index.php
<?php
if (isset($_POST['txt']))
echo 'Thnx for submitting the form';
else
echo 'Submit the form';
?>
<form name="frm" method="post" action="index.php">
<input type="text" name="txt" id="txt"/>
<input type="submit" />
</form>
答案 1 :(得分:2)
是,
<form name="name" method="post" action="">
然后运行php来处理index.php
顶部的数据答案 2 :(得分:0)
这不完全是你要求的,但这会使你的表单提交到自己的页面而不重新加载页面,所以这里是链接。这是一个YouTube视频。