我正在尝试在用于读取 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 文件的链接。
提前致谢。