I want to create a page that automatically prints a PDF document. For example, can I call mypage.html? Doc = my.pdf and print the file my.pdf.
How can I do this using javascript or php?
Vladimir
The closest thing you can do is insert the iframe containing the PDF into the HTML page, and then call window.print when the iframe loads.
window.print
... <iframe src="path/to/file.pdf" onload="window.print()"></iframe> ...
This will open the standard print dialog in most browsers.