Hi,
simply use JavaScripts print function:
place this code into your PHP page, that's supposed to be printed (or inside a template, that dynamically grasps content from a DB/static HTML/XML whatever...)
function print() {
if(!IE4mac) {
Check = confirm("Print this page now?","");
if (Check) window.print();
}
}
you can activate the printing with a link or within the onLoad handler inside the <BODY> tag.
The User still has to manually launch the print bc the "Print" window shows up first, which needs a OK confirmation.
Hope this helps
Tom