douan4347 2018-02-17 18:02
浏览 110
已采纳

使用php将mysql中的数据打印成pdf文件

I am using FPDF for the PDF and so far in my search I saw this similar question to my question and followed the code there and when I ran it no Error was being called and the PDf can be downloaded. But the problem is when I open the PDF file it is empty and I can't seem to understand the problem. This is my PHP code:

<?php
include("connections.php");
require("fpdf181/fpdf.php");
$pdf = new FPDF(); 
$name = $address = $email = "";
$nameErr = $addressErr = $emailErr = "";

if($_SERVER["REQUEST_METHOD"] == "POST"){ 
if(empty($_POST["name"])){
    $nameErr = "Name is required!";
}else{
    $name = $_POST["name"];
}
if(empty($_POST["address"])){
    $addressErr = "Address is required!";
}else{
    $address = $_POST["address"];
}
if(empty($_POST["email"])){
    $emailErr = "Email is required!";
}else{
    $email = $_POST["email"];
}   
}
//When button is clicked the pdf will be generated
if (isset($_POST["btn_1"])) {
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('','',12);

$view_query = mysqli_query($connections, "SELECT * FROM sample");
//where the database is accessed
while ($row = mysqli_fetch_assoc($view_query))
{
$db_name = $row["Name"];
$db_address = $row["Address"];
$db_email = $row["Email"];

$pdf->Cell(0,10,'', $db_name,1); 
$pdf->Ln();
$pdf->Cell(0,10,'', $db_address,1); 
$pdf->Ln();
$pdf->Cell(0,10,'', $db_email,1); 
$pdf->Ln();
}
$pdf->Output();

}
?>
<style>
.error{
color:red;  
}
</style>

<form method = "POST" action= "<?php htmlspecialchars("PHP_SELF");?>">

<input type = "text" name="name" value="<?php echo $name; ?>"><br>
<span class = "error"><?php echo $nameErr;?></span><br>

<input type = "text" name="address" value="<?php echo $address; ?>"><br>
<span class = "error"><?php echo $addressErr;?></span><br>

<input type = "text" name="email" value="<?php echo $email; ?>"><br>
<span class = "error"><?php echo $emailErr;?></span><br>

<input type = "submit" value="Submit">

<input type = "submit" name="btn_1" value="PDF">

</form>

<?php
// Insert to table
if($name && $address && $email){
$query = mysqli_query($connections, "INSERT INTO sample(Name,Address,Email) 
VALUES('$name','$address','$email')");

echo "<script language='javascript'>alert('New Record has been inserted!')
</script>";
echo"<script>window.location.href='index.php';</script>";
}
//view table
$view_query = mysqli_query($connections, "SELECT * FROM sample");
echo"<table border = '1' width ='50%'>";
echo "<tr>
<td>Name</td>
<td>Address</td>
<td>Email</td>
</tr>";
while ($row = mysqli_fetch_assoc($view_query)) {

$db_name = $row["Name"];
$db_address = $row["Address"];
$db_email = $row["Email"];
echo "<tr>
<td>$db_name</td>
<td>$db_address</td>
<td>$db_email</td>
</tr>";
    }
echo "</table>";
mysqli_close($connections);
?>
  • 写回答

1条回答 默认 最新

  • dongyou8701 2018-02-17 18:16
    关注

    This line

    $pdf->SetFont('','',12);
    

    sets your font to current font.

    But you didn't set any font earlier, so fpdf doesn't know, which font to use.

    So, first, you need to set font as described in SetFont manual page.

    Next, is Cell function. It's definition is

    Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, boolean fill [, mixed link]]]]]]])
    

    See? Text which you want to write to pdf comes as third parameter.

    In you call

    $pdf->Cell(0,10,'', $db_name,1); 
    

    third parameter is what? Empty string, I suppose.

    So, second, you need to fix your Cell calls.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致