tags:

views:

87

answers:

4

I have a resume building site. In which user input their information and finally we need to create his resume in doc or pdf file.

Anyone help me please...

+5  A: 

You could start by typing "PHP create pdf" into google:

Generally you want to get started on your own, and then come ask questions if you hit a particular snag. This question is far too general.

Erik
A: 

If you use Zend Framework, or you don't mind using it, it provides a simple api named Zend_Pdf.

Matthieu
A: 

Use pdflib or fpdf, or any other library to generate PDF documents.

For generating Ms-word documents you can use a library to generate .doc file, wether in XML form office 2007+ or old doc format, write office XML from scratch (not so trivial).

Or, and its sound crazy but it is the simpliest way to do msword documents : create HTML and rename the file to .doc, msword opens it transparently and you can play with CSS (with the same limitations as in outlook 2007) to custom document styling.

Benoit
A: 

Here are 2 free options for creating PDFs:

Darryl Hein