How to open new windows?

To open a separate window, you can use the usual _blank target. ExeOutput for PHP can deal with secondary windows and pop-ups.

If you would like to be able to control the size of the window being spawned, you can use JavaScript:

var myWindow = window.open("mypage.php", "", "width=200,height=100");

Tip

We also have support for window.moveTo() and window.resizeTo(). It is even possible to export the contents of a popup to PDF directly.