如何使用FPDF从数据库的表中调用1个数据列 我只需要从表格中呼叫1个名字或其他人即可...
我已经搜索了很长时间,没有适合的脚本... 感谢您的帮助...
我的$ result查询不起作用,我不确定这是真的,请原谅
<?php
require('fpdf/fpdf.php');
include('includes/config.php');
session_start();
error_reporting(0);
if(strlen($_SESSION['emplogin'])==0)
{
header('location:index.php');
} else {
$eid=$_SESSION['eid'];
$result=mysql_query("SELECT name from tblleaves WHERE EmailId=:eid");
class PDF extends FPDF
{
// Page Content
function Header()
{
// Page Header
// Arial bold 15
$this->SetFont('Arial','',8);
// Move to the right
$this->Ln(-5);
// Title
$this->Cell(200);
$this->Cell(70,8,"Name : 'The data is here' ",1,0,'L');