0

I came through a website here: http://perkinswill.com/mybook where visitors to the site can select specific project pages to add to a “book”, which they can download as a PDF.

For example, http://perkinswill.com/type/civic-cultural, you can add any project in your book. In addition, you can customize the book title when send to your email address.

I want to know how this is achieved. What programming is used here? Any Drupal module? Can Wordpress achieve the same functionality?

Thank you!

1 Answers1

0

The website is built using php. You can know from url if you append index.php page opens. If you want to reconfirm you should evaluate header sent by server.

If you want to edit PDF file your self there are many 3rd party libraries available to edit PDF files using php. You can look at this question for more information on editing PDF

Community
  • 1
  • 1
  • thank you for the helpful info! I noticed that the PDF that website generates is interactive. For example, when you click on a project image on the PDF it leads you to the project page on the website. I wondered if the PDF are layout and programmed by PHP or they are designed beforehand? – user3665879 May 22 '14 at 18:36
  • It all depends on your document if you are generating a report the pdf may be completely generated by php, if you want to modify a section they are used as a template. – Madhurendra Sachan May 23 '14 at 00:59