How to open new windows?
To open a separate window, you can use the usual _blank
target. ExeOutput for PHP can handle secondary windows and pop-ups effectively.
If you want to control the size of the newly opened window, you can use JavaScript:
var myWindow = window.open("mypage.php", "", "width=200,height=100");
Tip
We also support window.moveTo() and window.resizeTo() methods. It is even possible to export the contents of a popup to PDF directly.