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 mean

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. > > I

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 can

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); -- PHP General Mailing List (http://www.php.net/) To unsubsc

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 seve

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 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

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 print

[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 c