如何使用mysql数据创建pdf文件?
谁能给我一个简单的例子,如何使用 mysql 数据创建 pdf 文件?我使用 fpdf http://www.fpdf.org/ 进行 pdf 创建。 我想打印这些数据:
$result = mysql_query("SELECT Name, Profesion, Email FROM customers")
or die(mysql_error());
if(mysql_num_rows($result) > 0) {
while($row = mysql_fetch_assoc($result)) {
echo '
<td width="200px">'.$row['Name'].'</td>
<td width="200px">'.$row['Profesion'].'</td>
<td> width="200px">'.$row['Email'].'</td>'; }
}
Can anyone give me simple example, how to create pdf file with mysql data? Im using fpdf http://www.fpdf.org/ for pdf creation.
I want to print these data:
$result = mysql_query("SELECT Name, Profesion, Email FROM customers")
or die(mysql_error());
if(mysql_num_rows($result) > 0) {
while($row = mysql_fetch_assoc($result)) {
echo '
<td width="200px">'.$row['Name'].'</td>
<td width="200px">'.$row['Profesion'].'</td>
<td> width="200px">'.$row['Email'].'</td>'; }
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看过他们网站上的脚本部分吗?他们有一些从 MySQL 创建 PDF 表/报告的好例子。希望这有帮助。
http://www.fpdf.org/en/script/index.php
Have you looked at the scripts section on their site? They have a few good examples of creating a PDF table/report from MySQL. Hope this helps.
http://www.fpdf.org/en/script/index.php