我有这个代码。尝试将表单值从一个内部页面传递到另一个内部页面,但它不起作用。
以下是代码:
<div data-role="page" id="home">
<div data-role="header">
<h1>Page One</h1>
</div><!-- /header -->
<div data-role="content">
<form action="post" name="myform">
<input type="text" value="" name="mytext" />
<input type="submit" value="submit" />
</form>
</div><!-- /content -->
</div><!-- /page -->
//第2页
<div data-role="page" id="page2">
<div data-role="header">
<h1>Page Two</h1>
</div><!-- /header -->
<div data-role="content">
<?php if (isset($_POST['mytext'])) {
// do something with $_POST['value']
echo 'it works'; } ?>
</div><!-- /content -->
</div><!-- /page -->
它基本上不起作用......没有错误但没有值。
答案 0 :(得分:3)
您的操作应该是将处理您的帖子变量的PHP脚本,方法应该发布。
<form action="somefile.php" method="post">
答案 1 :(得分:2)
错误很可能就在这里:
<form action="post" name="myform">
<input type="text" value="" name="mytext" />
<input type="submit" value="submit" />
</form>
action应该是表单的处理程序,可以是同一页面,也可以是另一个页面(详细说明表单的php脚本所在的位置)。 POST是 METHOD。(可以是GET或POST)
所以它应该是:
<form action="" method="POST" name="myform"> <!-- action = "" reloads the same page, otherwise you could write action="myphppage.php" or whatever -->
<input type="text" value="" name="mytext" />
<input type="submit" value="submit" />
</form>
答案 2 :(得分:1)
<form action="post" name="myform">
错了。
应该是这样的:
<form method="post" name="myform" action="">
您需要发送POST方法。该操作为空,因此将其发送到页面本身。
答案 3 :(得分:1)
'action'
应该是目标网址。您将method="post"
与action="post"
混为一谈。将操作设置为"second_page.php".
我并不完全理解您对内部网页的含义,但如果它是同一页面,只有不同的div,则将操作留空(action=''
)。