You can't make someones printer print something (without using a trojan atleast) 😉
The closest you can come is using javascript to open a print dialog. This is essentially the same as someone going File > Print. They'd have to actually hit the print button on that screen for the page to print. Here's how you get that dialog to appear
put this function between the <head></head> tags in your document
<script>
function printWindow(){
bV = parseInt(navigator.appVersion)
if (bV >= 4) window.print()
}
</script>
Then wherever you want a Print Page link to appear, use the following code
<a href="javascript:printWindow()">Print Page</a>
The forum automatically converts my colon : and the p following it into a smiley face. After the word javascript there is a : followed by a p (no spaces anywhere)
Cgraz