[PHP] Re: opening pdf file in new window with a POST operation

2002-07-05 Thread Richard Lynch
form action=https://my.server/reports.php; method=post target=_blank input type=submit value='Show PDF' /form form action=https://my.server/reports.php; method=get target=_blank input type=submit value='Show PDF' /form These forms are identical with the exception of the post/get methods. A PDF

[PHP] Re: opening pdf file in new window with a POST operation

2002-07-05 Thread Richard Lynch
The GET method form works fine, while the POST method (which is what I need to use) pops up a message about the page containing both secure and nonsecure data. WTF? Well, the new browser window opens, but you're loading a PDF, not HTML, so it's not really getting any data at all. The

[PHP] Re: opening pdf file in new window with a POST operation

2002-07-05 Thread Pete James
Thank you, Richard. I think I understand now... I experienced this HTML behavior when trying to debug this problem, but figured it had little to do with the problem. HTML coming up in that page (even the pdf, as garble) was not producing a warning... Now I understand. One last question,