PDF generation

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • divyac
    New Member
    • Aug 2008
    • 40

    PDF generation

    I am creating an address book using php and mysql...Now i want to create mailing labels for all my contacts.To get the print of the mailing labels,i want it to be generated as pdf.Is it possible to generate a pdf file using php???
  • code green
    Recognized Expert Top Contributor
    • Mar 2007
    • 1726

    #2
    There are a couple of classes for php PDF
    Code:
    FPDF and ezpdf.
    FPDF needs a fairly extensive inheritance class and some work to catch errors,
    but it is quite easy to use and has a pretty good help forum
    Cannot comment on ezpdf.

    Comment

    • pbmods
      Recognized Expert Expert
      • Apr 2007
      • 5821

      #3
      Heya, Divyac.

      Check out PHP's PDF extension (http://php.net/pdf).

      Comment

      Working...