在FPDF中显示值 [英] Displaying values in FPDF

查看:58
本文介绍了在FPDF中显示值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的代码,用于在php中使用FPDF生成pdf.我想在PDF文件中显示学期,账单月份和账单年份.我不想在表格中显示这些值.
我想显示在页面顶部.我怎样才能做到这一点?有什么建议吗?提前致谢.干杯.

This is my code for generating pdf using FPDF in php. I want to display the semester, bill month and the billyear in the PDF file. I dont want to display the values in the table.
I want to display at the top of the page. How can i do this? Any suggestion? Thanks in advance. Cheers.

<?php

    session_start();
    require('fpdf/fpdf.php');

    //Connect to your database

    $r1=$_SESSION['sem1'];

    $con=mysql_connect('localhost','root','');

    if(!$con)
    {
    die('Unable to connect'.mysql_error());
    }
    mysql_select_db('hostel',$con);

    $result=mysql_query("SELECT r.hosteladmissionno,
           r.student_name,
           r.semester,
           r.blockname
           r.branch,
           m.billmonth,m.billyear ,
           (s.days_mess*perdayrate) AS mess_charges,
           m.perdayrate,
           s.days_mess,s.nv_tokens
           FROM registration r,student_month s,messexp m
           WHERE  s.hosteladmissionno = r.hosteladmissionno 
           AND r.mess_type=m.messtype
           AND m.billmonth = 'March' AND m.billyear= '2014'");
         $number_of_products = mysql_numrows($result);

    while($row = mysql_fetch_array($result))
    {
        $hostad = $row['hosteladmissionno'];
        $name = $row['student_name'];
        $block=$row['blockname'];
        $branch=$row['branch'];
        $perday=$row['perdayrate'];
        $days=$row['days_mess'];
        $messch= $row['mess_charges'];
        $nv=$row['nv_tokens'];




        $column_no = $column_no.$hostad."\n";
        $column_name = $column_name.$name."\n";
        $sem_details= $sem_details.$block."\n";
        $comm_details= $comm_details.$branch."\n";
        $course_details= $course_details.$perday."\n";
        $courseyr_details= $courseyr_details.$days."\n";
        $mess_details= $mess_details.$messch."\n";
        $block_details= $block_details.$nv."\n";



    }
    mysql_close();

    //Create a new PDF file
    $pdf=new FPDF('P','mm','A4');

    $pdf->AddPage();

    //Fields Name position
    $Y_Fields_Name_position = 40;
    //Table position, under Fields Name
    $Y_Table_Position = 46;
    $pdf->Cell(15,50,'Anna University Hostels');
    //First create each Field Name
    //Gray color filling each Field Name box
    $pdf->SetFillColor(232,232,232);
    //Bold Font for Field Name
    $pdf->SetFont('Arial','B',9);
    $pdf->SetY($Y_Fields_Name_position);
    $pdf->SetX(5);
    $pdf->Cell(23,6,'Admission No',1,0,'L',1);
    $pdf->SetX(28);
    $pdf->Cell(37,6,'Student Name',1,0,'L',1);
    $pdf->SetX(65);
    $pdf->Cell(18,6,'Block Name',1,0,'L',1);
    $pdf->SetX(83);
    $pdf->Cell(20,6,'Branch',1,0,'L',1);
    $pdf->SetX(103);
    $pdf->Cell(22,6,'Per Day Rate',1,0,'L',1);
    $pdf->SetX(125);
    $pdf->Cell(22,6,'No of Days',1,0,'L',1);
    $pdf->SetX(147);
    $pdf->Cell(20,6,'Mess charge',1,0,'L',1);
    $pdf->SetX(167);
    $pdf->Cell(18,6,'NV Token',1,0,'L',1);
    $pdf->SetX(185);
    $pdf->Cell(25,6,'Block Name',1,0,'L',1);
    $pdf->Ln();

    //Now show the 3 columns
    $pdf->SetFont('Arial','',12);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(5);
    $pdf->MultiCell(23,6,$column_no,1);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(28);
    $pdf->MultiCell(37,6,$column_name,1);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(65);
    $pdf->MultiCell(18,6,$block,1);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(83);
    $pdf->MultiCell(20,6,$branch,1);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(103);
    $pdf->MultiCell(22,6,$perday,1);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(125);
    $pdf->MultiCell(22,6,$days,1);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(147);
    $pdf->MultiCell(20,6,$messch,1);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(167);
    $pdf->MultiCell(18,6,$nv,1);
    $pdf->SetY($Y_Table_Position);
    $pdf->SetX(185);
    $pdf->MultiCell(25,6,$block_details,1);
    $i = 0;
    $pdf->SetY($Y_Table_Position);
    while ($i < $number_of_products)
    {
        $pdf->SetX(5);
        $pdf->MultiCell(205,6,'',1);
        $i = $i +1;
    }
    $pdf->Output();
    ?>

推荐答案

为什么不使用FPDF的标准"header()"扩展功能? http://fpdf.org/en/doc/header.htm

Why dont you use the standard "header()" extend function of FPDF ? http://fpdf.org/en/doc/header.htm

这篇关于在FPDF中显示值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆