PDF Maker

This is a discussion on PDF Maker within the alt.comp.lang.php forums, part of the PHP Programming Forums category; I am looking for some software to create pdfs dynamically from php pages. Pages are php driven with mysql data ...


Go Back   Usenet Forums > PHP Programming Forums > alt.comp.lang.php

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-06-2006
John
 
Posts: n/a
Default PDF Maker

I am looking for some software to create pdfs dynamically from php
pages.

Pages are php driven with mysql data tables which will be picked up.
Top and side menus are inserted into the page using includes and won't
appear in the pdf. Must be easy to configure, be able to use css,
recognise standard html features and also watermarks, headers, footers
and all the other paraphernalia to make it look good. Building a new
page using output buffering would be an ideal solution.

Does anyone have a favourite package or know of one. Not looking for a
freebie necessarily but happy to pay up to a few hundred pounds if
required.

I have searched the web, before anyone asks, but there doesn't seem to
be much out there.

Thanks John


Reply With Quote
  #2 (permalink)  
Old 04-06-2006
no-1
 
Posts: n/a
Default Re: PDF Maker

http://sourceforge.net/projects/pdf-php

or google "php pdf" to find other solutions.

Reply With Quote
  #3 (permalink)  
Old 04-06-2006
strawberry
 
Posts: n/a
Default Re: PDF Maker

www.fpdf.org

Reply With Quote
  #4 (permalink)  
Old 04-08-2006
John
 
Posts: n/a
Default Re: PDF Maker

On 6 Apr 2006 10:29:30 -0700, "no-1" <onedbguru@firstdbasource.com>
wrote:

>http://sourceforge.net/projects/pdf-php


Thanks for the suggestion but this seems to be a pdf page maker rather
than a converter (perhaps I should have been clearer). I already have
over 100 pages created from a mysql database. I don't really want to
create pdf commands to do the conversion at this stage.


>or google "php pdf" to find other solutions.


I have been Googling using those keywords and others for hours with no
luck, that's why I posted here.

Thanks again. Any other suggestion welcome.

John


Reply With Quote
  #5 (permalink)  
Old 04-08-2006
John
 
Posts: n/a
Default Re: PDF Maker

On 6 Apr 2006 10:42:11 -0700, "strawberry" <zac.carey@gmail.com>
wrote:

>www.fpdf.org


Thanks strawberry but this seems to do the same as no 1 suggested.

--
John
Reply With Quote
  #6 (permalink)  
Old 04-13-2006
fletch
 
Posts: n/a
Default Re: PDF Maker

htmldoc can produce pdfs's from html3.0 ok. But you end up having to
alter the html a little to get the best results.

Reply With Quote
  #7 (permalink)  
Old 04-17-2006
John
 
Posts: n/a
Default Re: PDF Maker

On 13 Apr 2006 10:40:49 -0700, "fletch"
<richard.a.fletcher@googlemail.com> wrote:

>htmldoc can produce pdfs's from html3.0 ok. But you end up having to
>alter the html a little to get the best results.


Thanks fletch.

Their demo sort of works but no support for CSS.

--
John

Reply With Quote
  #8 (permalink)  
Old 09-22-2007
Adrienne Boswell
 
Posts: n/a
Default Re: PDF Maker

Gazing into my crystal ball I observed John <yhqwasgo@d8mklotfu> writing
in news:cbja32pkunspa0drjctk6ht1vl6gl3pt5k@4ax.com:

> I am looking for some software to create pdfs dynamically from php
> pages.
>
> Pages are php driven with mysql data tables which will be picked up.
> Top and side menus are inserted into the page using includes and won't
> appear in the pdf. Must be easy to configure, be able to use css,
> recognise standard html features and also watermarks, headers, footers
> and all the other paraphernalia to make it look good. Building a new
> page using output buffering would be an ideal solution.
>
> Does anyone have a favourite package or know of one. Not looking for a
> freebie necessarily but happy to pay up to a few hundred pounds if
> required.
>
> I have searched the web, before anyone asks, but there doesn't seem to
> be much out there.
>
> Thanks John
>
>
>


http://www.alt-php-faq.org/local/57/

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Reply With Quote
  #9 (permalink)  
Old 09-23-2007
Aaron Saray
 
Posts: n/a
Default Re: PDF Maker

On Sep 22, 12:36 pm, Adrienne Boswell <arb...@yahoo.com> wrote:
> Gazing into my crystal ball I observed John <yhqwasgo@d8mklotfu> writing
> innews:cbja32pkunspa0drjctk6ht1vl6gl3pt5k@4ax.com:
>
>
>
> > I am looking for some software to create pdfs dynamically from php
> > pages.

>
> > Pages are php driven with mysql data tables which will be picked up.
> > Top and side menus are inserted into the page using includes and won't
> > appear in the pdf. Must be easy to configure, be able to use css,
> > recognise standard html features and also watermarks, headers, footers
> > and all the other paraphernalia to make it look good. Building a new
> > page using output buffering would be an ideal solution.

>
> > Does anyone have a favourite package or know of one. Not looking for a
> > freebie necessarily but happy to pay up to a few hundred pounds if
> > required.

>
> > I have searched the web, before anyone asks, but there doesn't seem to
> > be much out there.

>
> > Thanks John

>
> http://www.alt-php-faq.org/local/57/
>
> --
> Adrienne Boswell at Home
> Arbpen Web Site Design Serviceshttp://www.cavalcade-of-coding.info
> Please respond to the group so others can share


We use a package called "dompdf" which may help you.

Reply With Quote
  #10 (permalink)  
Old 10-10-2007
Ben Bradley
 
Posts: n/a
Default Re: PDF Maker

At the moment we're using a free PHP class called FPDF
http://www.fpdf.org

Works well for dynamically creating our order forms.
Problem is it did take time to get the layout set up the way we wanted.

It doesn't support CSS though, but I notice that dompdf does so I might
look in to that to make things easier for us to change our order form
designs.



Aaron Saray wrote:
> On Sep 22, 12:36 pm, Adrienne Boswell <arb...@yahoo.com> wrote:
>> Gazing into my crystal ball I observed John <yhqwasgo@d8mklotfu> writing
>> innews:cbja32pkunspa0drjctk6ht1vl6gl3pt5k@4ax.com:
>>
>>
>>
>>> I am looking for some software to create pdfs dynamically from php
>>> pages.
>>> Pages are php driven with mysql data tables which will be picked up.
>>> Top and side menus are inserted into the page using includes and won't
>>> appear in the pdf. Must be easy to configure, be able to use css,
>>> recognise standard html features and also watermarks, headers, footers
>>> and all the other paraphernalia to make it look good. Building a new
>>> page using output buffering would be an ideal solution.
>>> Does anyone have a favourite package or know of one. Not looking for a
>>> freebie necessarily but happy to pay up to a few hundred pounds if
>>> required.
>>> I have searched the web, before anyone asks, but there doesn't seem to
>>> be much out there.
>>> Thanks John

>> http://www.alt-php-faq.org/local/57/
>>
>> --
>> Adrienne Boswell at Home
>> Arbpen Web Site Design Serviceshttp://www.cavalcade-of-coding.info
>> Please respond to the group so others can share

>
> We use a package called "dompdf" which may help you.
>

Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 11:11 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0