-1

我正在尝试在用于读取 PDF 文件的 php 代码中添加 html 标记。我想在页面底部添加链接,在此链接上方显示 pdf 文件。但我找不到这样做的方法。我想做类似这张图片的事情..
在此处输入图像描述

意味着我想要 PDF 文件显示的内联滚动器,然后链接其他 pdf 文件。

这是我的代码:

<?php
$filename=base64_decode($_REQUEST['file2']);
$new_id=base64_decode($_REQUEST['id2']);
$line = "<html>";
$line .= "<head>";
$line .= "<title>PDF test</title>";
$line .= "<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>";
$line .= "</head>";
$line .= "<body><div style='position:absolute; overflow:scroll;height:100px !important'>";
$file = WEB_ROOT."/admin/images/plastic_sandesh/pdffile/".$filename;
$length = filesize($file);
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=".$file);
header("Content-Length: ".$length); 
@readfile($file);

$line .= "</div></body>";
$line .= "</html>";
?>

<iframe style='border:1px solid #FEFEFE; width:100px; height:100px;'>
<div style="position:absolute; overflow:scroll;height:100px !important">
<?php
$Qry2 =mysql_query( "select * from `tbl_plasticsandesh_pages` where `sandesh_id`='$new_id' order by `order`") or die(mysql_error());
$j=1;
 $cnt=mysql_num_rows($Qry2);
while($res2 = mysql_fetch_array($Qry2))
{
    $file_name2=base64_encode($res['pdf_page']);
    ?>
  <a href="readpdf.php?act=view&file=<?php echo $file_name2;?>$id2=<?php echo $_REQUEST['id2'];?>" style="color:#111"><?php echo $j;?></a><br />
<?php
$j++;
}
?>
 </div>
 </iframe>

但问题是唯一的 pdf 文件是显示,没有其他 PDF 文件的链接。

提前致谢。

4

2 回答 2

2

您正在设置标题,浏览器将您的页面显示为应用程序/pdf。这就是为什么它不显示链接。

解决方案:将页面显示为 html 页面并在 iframe 中显示 pdf。

于 2013-07-25T07:07:18.370 回答
0

它是通过使用这个来解决的:

<iframe name="iframe1" frameborder="0" src="<?php echo SITE_URL."/admin/images/plastic_sandesh/pdffile/".$filename;?>" height="100%" width="100%">
<html>
<body marginwidth="0" marginheight="0" style="background-color: rgb(38,38,38);">
<embed width="100%" height="" name="plugin" src="<?php echo SITE_URL."/admin/images/plastic_sandesh/pdffile/".$filename;?>" type="application/pdf">
</body>
</html>
</iframe>

然后是另一个链接代码及其工作。

于 2013-07-25T09:57:38.310 回答