PHP 印刷用のHTMLをキックする
キックする側
<input type="button" value="プリント" onclick="window.open('http://localhost/prt/print4p.html')" />
キックされる側
print4p.html
html内のスクリプトでロード後にプリントその後クローズ
<script>
window.onload = function () {
window.print()
window.close()
};
</script>

PR