I try to generate a PDF and IE displays a blank page. What happens?
First of all, check that you send nothing to the browser after the PDF (not even a space or a carriage return). You can put an exit statement just after the call to the Output() method to be sure. If it still doesn’t work, it means you’re a victim of the “blank page syndrome”. IE used in conjunction with the Acrobat plug-in suffers from numerous bugs, in all versions. You should test your application with as many IE versions as possible (at least if you’re on the Internet). The problem occurs mostly with the POST method, so it is strongly advised to avoid it (all the more that it causes other problems, see the next question). The GET works better but may fail when the URL becomes too long: don’t use a query string with more than 45 characters. However, a tip exists to exceed this limit: end the URL with .pdf, which tricks IE. If you use a formular, you can add a hidden field at the last position: The usage of PHP sessions also often causes