[PHP] Printer Friendly

2006-08-02 Thread weetat
Hi all , I have a web page which need to be print to the printer. However when i use javascript window print() function , the page and alignment is out. Read on the net , suggest that i need to setup a printer friendly page in the web page. Any ideas how i going to accomplished it

Re: [PHP] Printer Friendly

2006-08-02 Thread Andries Seutens
weetat schreef: Hi all , I have a web page which need to be print to the printer. However when i use javascript window print() function , the page and alignment is out. Read on the net , suggest that i need to setup a printer friendly page in the web page. Any ideas how i going to

Re: [PHP] Printer Friendly

2006-08-02 Thread tedd
At 6:03 PM +0800 8/2/06, weetat wrote: Hi all , I have a web page which need to be print to the printer. However when i use javascript window print() function , the page and alignment is out. Read on the net , suggest that i need to setup a printer friendly page in the web page.

[PHP] Printer Friendly pages

2004-02-03 Thread Alex Hogan
Hi All, I have a printer friendly page and I want to get rid of the referring url at the bottom of the page. How can I do this? I can't seem to find any reference to this in the archives. alex hogan ** The

RE: [PHP] Printer Friendly pages

2004-02-03 Thread jon roig
I think what you're talking about is a function of the explorer browser. The user would have to remove it him/herself. - jon -Original Message- From: Alex Hogan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 8:12 AM To: PHP General list Subject: [PHP] Printer

Re: [PHP] Printer Friendly pages

2004-02-03 Thread John W. Holmes
From: Alex Hogan [EMAIL PROTECTED] I have a printer friendly page and I want to get rid of the referring url at the bottom of the page. How can I do this? I can't seem to find any reference to this in the archives. This is controlled by the browser; there's no way for PHP to change it.

RE: [PHP] Printer Friendly pages

2004-02-03 Thread Alex Hogan
Thanks., alex -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 1:27 PM To: Alex Hogan; PHP General list Subject: Re: [PHP] Printer Friendly pages From: Alex Hogan [EMAIL PROTECTED] I have a printer friendly page and I want

[PHP] Printer Friendly page

2003-02-22 Thread Sebastian
Greetings all. I am looking for a simple print page script. I tried just about all the print scripts at hotscripts.com and not one works (at least for me). Does anyone know of one that works under php v 4.2.3 with register globals off? thanks in advance.

Re: [PHP] Printer Friendly page

2003-02-22 Thread olinux
make your own. what could be simpler? If you have data that is generated with php, just change the output to just send very basic html page. olinux --- Sebastian [EMAIL PROTECTED] wrote: Greetings all. I am looking for a simple print page script. I tried just about all the print scripts

Re: [PHP] Printer Friendly page

2003-02-22 Thread Justin French
if you're already building dynamic pages, just roll your own... set a GET var to trigger a simple page view (simple layout, less HTML, very little CSS, no tables, etc etc) which uses the same CONTENT but keeps it simple for printing. justin on 23/02/03 8:28 AM, Sebastian ([EMAIL PROTECTED])

[PHP] Printer friendly version script

2002-06-13 Thread Angelo Marcos Rigo
Hi Anybody knows a good printer friendly version php script thank´s in advance Ângelo Marcos Rigo Webmaster Colégio Anchieta http://www.colegioanchieta.g12.br -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Printer friendly version script

2002-06-13 Thread Miguel Cruz
On Thu, 13 Jun 2002, Angelo Marcos Rigo wrote: Anybody knows a good printer friendly version php script thank´s in advance Well, it's entirely dependent on your particular HTML; there's no general-purpose solution. ? $P = ($_GET['printerfriendly'] == 'yes') ? 1 : 0; ?htmlbody?

Re: [PHP] Printer friendly version script

2002-06-13 Thread Pedro Garre
*This message was transferred with a trial version of CommuniGate(tm) Pro* I think the only solution is to convert it to PDF. In theory, CSS2 provides with the possibility to configure the print format, but no browser supports it. Pedro. On Thursday 13 June 2002 19:56, Miguel Cruz wrote:

Re: [PHP] Printer friendly version script

2002-06-13 Thread Tom Rogers
Hi One method for later browsers is to use a header tag that causes a new page to be loaded for printing. This is done transperantly so the users don't need to click anything other than the normal print button. It goes like this : link rel=alternate media=print href=?echo

Re: [PHP] Printer friendly version script

2002-06-13 Thread Tom Rogers
Hi Should have made that a bit clearer :) head link rel=alternate media=print href=?echo $_SERVER['PHP_SELF']??print=yes /head One method for later browsers is to use a header tag that causes a new page to be loaded for printing. This is done transperantly so the users don't need to click