Re: [PHP] PHP PDF

2002-05-17 Thread peter tatischev
Why not mail it as MIME?? if that's not the case, refer to http://www.php.net/manual/en/ref.pdf.php - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 17, 2002 5:17 PM Subject: [PHP] PHP PDF Hi the ML I have the following question : I have

RE: [PHP] PHP PDF

2002-05-17 Thread James E. Hicks III
:00 STOP - 08:09:19 James -Original Message- From: peter tatischev [mailto:[EMAIL PROTECTED]] Sent: Friday, May 17, 2002 9:43 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] PHP PDF Why not mail it as MIME?? if that's not the case, refer to http://www.php.net/manual/en/ref.pdf.php

Re: [PHP] PHP PDF

2002-05-17 Thread Chris Boget
I have the following question : I have constructed several pages with PHP which look likes some reports. (I attached one example to my mail) Now I need to convert this HTML page to PDF to send it by mail . Does any one has an idea ? Check out HTMLDoc. It works wonders for us. Chris --

Re: [PHP] PHP PDF

2002-05-17 Thread Thalis A. Kalfigopoulos
I'd suggest you go for FPDF, a free PHP class for generating PDF files fast easy. It's pretty good for simple stuff (i.e. 99% of my work at least) and has a fast learning curve. www.fpdf.org cheers, thalis On Fri, 17 May 2002 [EMAIL PROTECTED] wrote: Hi the ML I have the following

RE: [PHP] PHP PDF

2002-05-17 Thread Miguel Cruz
On Fri, 17 May 2002, James E. Hicks III wrote: I do a system(html2ps SOME.html SOME.pd); then I do a system(ps2pdf SOME.pd); How about just: system('html2ps some.html | ps2pdf some.pdf'); ? miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] PHP PDF

2002-05-17 Thread James E. Hicks III
2:02 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] PHP PDF On Fri, 17 May 2002, James E. Hicks III wrote: I do a system(html2ps SOME.html SOME.pd); then I do a system(ps2pdf SOME.pd); How about just: system('html2ps some.html | ps2pdf some.pdf'); ? miguel -- PHP General

Re: [PHP] Php/Pdf application

2002-04-09 Thread Justin French
I don't believe you can do 1, and i'm not clear on what you're asking in 2. I've found Adobe's security stuff to be perfectly adequate. It gives you the options on what to allow them to do -- separate passwords can be assigned for viewing and modifying the file, and you can prevent any/all of

Re: [PHP] PHP .PDF .ZIP ???

2002-04-07 Thread Tyler Longren
Yes, PHP can do pdf and can READ zip files. I am not sure if PHP can make the pdf unprintable, or locked. You can find info on the pdf functions here: http://www.php.net/manual/en/ref.pdf.php and info on the zip functions here: http://www.php.net/manual/en/ref.zip.php Since those are