我使用此代码在屏幕上显示pdf文档,到目前为止,它可以正常工作:
$result_cursos = "SELECT * FROM centrodb.UploadPDF";
$resultado_cursos = mysqli_query($conn, $result_cursos);
$tabela1 .= '<div class="teste" id="tabela" style="float: center" table align="center">';
$tabela1 .= '<table align="center" height="100%" border="5" id="tabela">';
$tabela1 .= '<tr>';
$tabela1 .='<thead>';
$tabela1 .= '<tr>';
$tabela1 .= '<th style="width:80px">Ementas</th>';
$tabela1 .= '</tr>';
$tabela1 .='</thead>';
$tabela1 .='<tbody>';
while($rows_cursos = mysqli_fetch_array($resultado_cursos)) {
$tabela1 .= '<tr>';
$tabela1 .= '<td><iframe src="/wordpress/wp-content/themes/busiprof/Upload/' .$rows_cursos['txtArquivo']. '" width="600" height="780" style="border: none;" ></iframe></td>';
$tabela1 .= '</tr>'; }
$tabela1 .= '</tr>';
$tabela1 .='</tbody>';
$tabela1 .= '</table>';
$tabela1 .= '</div>';
echo $tabela1;
打开pdf后,我希望能够创建一个文本框,这样我就可以编写pdf并将这些更改与pdf文本框一起保存,如下图所示:
我未在php中创建pdf,而是将pdf上传到服务器内部的文件夹中,并将路径保存在数据库表中。 谁能帮助创建这些文本框?