[PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread julian
Hi, I have an application that along filling in some forms, it produces a pdf file, as confirmation of all entered data. I want to send this pdf file to a different window/tab of the browser, so it is displayed and can latter be printed. In the mean time, the original window contains a

Re: [PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread Børge Holen
On Monday 18 February 2008 13:59:11 julian wrote: Hi, I have an application that along filling in some forms, it produces a pdf file, as confirmation of all entered data. I want to send this pdf file to a different window/tab of the browser, so it is displayed and can latter be printed.

Re: [PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread Zoltán Németh
2008. 02. 18, hétfő keltezéssel 13.59-kor julian ezt írta: Hi, I have an application that along filling in some forms, it produces a pdf file, as confirmation of all entered data. I want to send this pdf file to a different window/tab of the browser, so it is displayed and can latter

Re: [PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread julian
not html target, pdf window so it can be saved and printed separately form the application. Børge Holen wrote: On Monday 18 February 2008 13:59:11 julian wrote: Hi, I have an application that along filling in some forms, it produces a pdf file, as confirmation of all entered data. I

Re: [PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread Neo [GC]
No, this is not possible. You have to do at least two requests, one to get the PDF, one to get the html confirmation message. Normally you would onle open the pdf in a new window using target=_blank for the link. Workflow isn't broken, but you have no confirmation message. There are

RE: [PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread Jay Blanchard
[snip] not html target, pdf window so it can be saved and printed separately form the application. [/snip] You have to use an anchor tag's target attribute to open the new tab or window (PHP is server-side and cannot do this); a href=/path/to/my.pdf target=_blank -- PHP General Mailing

Re: [PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread Daniel Brown
On Feb 18, 2008 8:55 AM, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] not html target, pdf window so it can be saved and printed separately form the application. [/snip] You have to use an anchor tag's target attribute to open the new tab or window (PHP is server-side and cannot do

Re: [PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread Richard Lynch
On Mon, February 18, 2008 6:59 am, julian wrote: I have an application that along filling in some forms, it produces a pdf file, as confirmation of all entered data. I want to send this pdf file to a different window/tab of the browser, so it is displayed and can latter be printed. In the

Re: [PHP] open a secondary window/tab in the browser from php

2008-02-18 Thread tedd
At 1:59 PM +0100 2/18/08, julian wrote: Hi, I have an application that along filling in some forms, it produces a pdf file, as confirmation of all entered data. I want to send this pdf file to a different window/tab of the browser, so it is displayed and can latter be printed. In the