Re: [PHP] Java Script or PHP

2004-07-29 Thread Skippy
Quoting Curt Zirzow [EMAIL PROTECTED]: What is the correct way to open the page from the print link to a new page? @media print { .css { its: all here; } } Yeah, but sometimes you want the print version to be more nifty, like have all the pages in an article instead of just the

[PHP] Java Script or PHP

2004-07-28 Thread Karl-Heinz Schulz
I have a database generated page and I want to show a Print Version in a new window when somebody selects the print option. http://www.test.com/docs/view_record.php?id=1 http://www.test.com/docs/print_record.php?id=1 What is the correct way to open the page from the print link to a new page?

Re: [PHP] Java Script or PHP

2004-07-28 Thread zareef ahmed
way to open the page from the print link to a new page? To Open a New Window you can use javascript window.open or just set target=_blank in your anchor tag (a). But you may need to adjust the properties of new windows like status bar, toolbar, width, height; for this you can use java script

RE: [PHP] Java Script or PHP

2004-07-28 Thread Karl-Heinz Schulz
PM To: Karl-Heinz Schulz; [EMAIL PROTECTED] Subject: Re: [PHP] Java Script or PHP --- Karl-Heinz Schulz [EMAIL PROTECTED] wrote: I have a database generated page and I want to show a Print Version in a new window when somebody selects the print option. http://www.test.com/docs

RE: [PHP] Java Script or PHP

2004-07-28 Thread zareef ahmed
; [EMAIL PROTECTED] Subject: Re: [PHP] Java Script or PHP --- Karl-Heinz Schulz [EMAIL PROTECTED] wrote: I have a database generated page and I want to show a Print Version in a new window when somebody selects the print option. http://www.test.com/docs/view_record.php?id=1

Re: [PHP] Java Script or PHP

2004-07-28 Thread Curt Zirzow
* Thus wrote Karl-Heinz Schulz: I have a database generated page and I want to show a Print Version in a new window when somebody selects the print option. http://www.test.com/docs/view_record.php?id=1 http://www.test.com/docs/print_record.php?id=1 What is the correct way to open the

RE: [PHP] Java Script or PHP

2004-07-28 Thread Karl-Heinz Schulz
Thank you for your help. -Original Message- From: zareef ahmed [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 11:25 PM To: Karl-Heinz Schulz Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Java Script or PHP --- Karl-Heinz Schulz [EMAIL PROTECTED] wrote: Zareef, Thank you