我在 PDF 文档中有一个隐藏的提交表单。我设法将表单插入到 PHP 页面上的 iframe 中。我在 iframe 之外创建了一个提交按钮。有什么办法可以链接这两个按钮吗?当我单击 php 页面上的提交按钮时,我想在 iframe 中提交表单。我该怎么做呢?
这是我的<iframe>
:
<iframe src="http://localhost/UniApp/results/fillsheet.php?recordID=<?php echo $row_DetailRS1['university_ID']; ?>" height="400px" width="750px" id="unipdf">
<src>
引用了这个文件fillsheet.php,代码是:
<?php header('Content-type: application/pdf'); @readfile('fillsheet.pdf'); ?>