Re: [PHP] fpdf problem?

2013-08-09 Thread Jim Giner
On 8/9/2013 1:56 PM, Jan Ehrhardt wrote: Jim Giner in php.general (Fri, 09 Aug 2013 12:33:30 -0400): Good question and the answer is: it happens for other pdfs as well, so I guess it's not fpdf. Sorry for the mis-post here - I'll do more research on Adobe and IE. Update: Solved my print probl

Re: [PHP] fpdf problem?

2013-08-09 Thread Jan Ehrhardt
Jim Giner in php.general (Fri, 09 Aug 2013 12:33:30 -0400): >> Good question and the answer is: it happens for other pdfs as well, so I >> guess it's not fpdf. >> >> Sorry for the mis-post here - I'll do more research on Adobe and IE. > >Update: >Solved my print problem by unchecking an option in A

Re: [PHP] fpdf problem?

2013-08-09 Thread Jim Giner
On 8/9/2013 12:11 PM, Jim Giner wrote: On 8/9/2013 12:06 PM, Tamara Temple wrote: On Aug 9, 2013, at 10:50 AM, Jim Giner wrote: I've been using fpdf to create pdf files for my site. All has been well for over a year. Suddenly I have a problem wherein IE 10 on W7 crashes when I try to print

Re: [PHP] fpdf problem?

2013-08-09 Thread Jim Giner
On 8/9/2013 12:06 PM, Tamara Temple wrote: On Aug 9, 2013, at 10:50 AM, Jim Giner wrote: I've been using fpdf to create pdf files for my site. All has been well for over a year. Suddenly I have a problem wherein IE 10 on W7 crashes when I try to print one of these pdfs created by my php s

Re: [PHP] fpdf problem?

2013-08-09 Thread Tamara Temple
On Aug 9, 2013, at 10:50 AM, Jim Giner wrote: > I've been using fpdf to create pdf files for my site. All has been well for > over a year. Suddenly I have a problem wherein IE 10 on W7 crashes when I > try to print one of these pdfs created by my php scripts. > > The pdf files that I create

Re: [PHP] FPDF ?

2012-05-18 Thread Brian Dunning
I never found a solution to this myself. On Apr 26, 2012, at 2:13 PM, Jim Giner wrote: > For those of you with FPDF experience. > > I've just begun using it and have figured out how it works I think. I am > still having trouble with the bottom of the page tho. Seems that if I get > too close

Re: [PHP] FPDF passing values into header and footer?

2010-04-25 Thread Angus Mann
- Original Message - From: "Angus Mann" To: "php-general" Sent: Monday, April 26, 2010 2:46 PM Subject: [PHP] FPDF passing values into header and footer? Hi all. Whilst this question relates to fpdf (www.fpdf.org) I think it really is a PHP question, because it involves passing val

Re: [PHP] FPDF Printing Ideas?

2008-12-16 Thread Dan Shirah
On Tue, Dec 16, 2008 at 2:32 PM, wrote: > > Just generate a much larger PDF with all the pages they asked for and call > it done. > :-) I don't think I can do it that way unfortunately. They will be printing 100-300 records in bulk...the amount of time it would take to generate one giant PDF f

Re: [PHP] FPDF Printing Ideas?

2008-12-16 Thread ceo
Just generate a much larger PDF with all the pages they asked for and call it done. :-) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] FPDF

2008-01-19 Thread Brady Mitchell
On Jan 18, 2008, at 1014AM, Balasubramanyam Ananthamurthy wrote: I'm fetching content from database and printing it on the browser. I want add an link on the same page "Click here to view it in PDF". Is it possible to do it using FPDF? If yes, how can I do this? Yes, this can be done with FP

Re: [PHP] FPDF

2008-01-18 Thread Richard Lynch
On Fri, January 18, 2008 12:14 pm, Balasubramanyam Ananthamurthy wrote: > I'm fetching content from database and printing it on the browser. I > want add an link on the same page "Click here to view it in PDF". Is > it > possible to do it using FPDF? If yes, how can I do this? Actually, FPDF goes

RE: [PHP] fpdf

2006-07-26 Thread Peter Lauri
Yes you can... $pdf->Output("thelocation/filename.pdf", "F"); Just make sure that thelocation has permission to write for the web server. /Peter -Original Message- From: João Cândido de Souza Neto [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 7:05 AM To: php-general@lists.php

Re: [PHP] FPDF output to a variable

2004-11-24 Thread Jason Wong
On Thursday 25 November 2004 01:27, Justin Palmer wrote: > //Get the output and send the email send_mail.php > //uses the class MIME_mail (http://www.cetusa.org/temp/MIME.class.phps) > //WARNING I know that this is not how it is intended to be used, > //but this is the what I want to accomplish.

Re: [PHP] FPDF Help

2004-04-16 Thread Marek Kilimajer
Nathan Mealey wrote: Anyone who is familiar with using FPDF to generate PDFs, I'd really appreciate some suggestions here: I am using the following code, virtually identical to that used in the FPDF tutorial examples. But I keep getting a parse error for the first line containing the variable

Re: [PHP] FPDF Help

2004-04-15 Thread Tom Rogers
Hi, Friday, April 16, 2004, 2:38:24 AM, you wrote: NM> Anyone who is familiar with using FPDF to generate PDFs, I'd really NM> appreciate some suggestions here: NM> I am using the following code, virtually identical to that used in the NM> FPDF tutorial examples. But I keep getting a parse error

Re: [PHP] fpdf

2003-07-30 Thread Andrew Brampton
The way I would do it is I would make the Save button (or link) point to display.php?save... Now in the display.php I would have it figure out if save is in the URL, if it is then it should output a pdf file instead of a html file. This does however mean that your query is done twice (once for see

Re: [PHP] FPDF and MySQL

2002-09-20 Thread Marek Kilimajer
If you look at the tutorial no. 5 on www.fpdf.org, all you need is to change LoadData function, example: function LoadData($condition) { $res=mysql_query("SELECT * FROM table WHERE 1 AND ($condition)"); while($data[]=mysql_fetch_row($res) ) { } return $data; } Chuck Payne wrote: >Hi