0

我正在使用mail-data.php嵌入在payin.php页面中的 iFrame,在该页面中输入用户详细信息以进行邮寄。

  1. 我可以根据从数据库中检索到的 id 将数据从payin.php(原始页面)页面传递到mail-data.php(iFrame)吗?

  2. 如何将数据从mail-data.php(iFrame)发布到另一个页面mail.php以执行mail功能?如果是,如何将数据从普通页面传递到 iFrame 页面?

我尝试在 iFrame 页面中使用表单操作mail.php,但是我得到了显示的错误。

Not Acceptable

An appropriate representation of the requested resource /radical/mail-data.php could not be found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

可能是什么问题?

4

2 回答 2

0

我只是在 href 的帮助下将 id 值传递给 mail-data.php,然后使用 get 方法检索了 id ..它工作得很好

谢谢

于 2013-06-26T12:07:18.593 回答
0

此代码示例展示了如何使用target表单元素的属性通过 iframe 发送表单请求:

<iframe src="about:blank" name="mail-data" />

<form action="mail-data.php" method="post" target="mail-data">
    <!-- form fields !-->
</form>
于 2013-06-04T12:54:18.823 回答