I need to send a file to a local workstations default printer, but I do not want the user to have to interact with downloading it or deal with a popup. The interface is a local web intranet webpage.
<select name=”s-1” id=”s_1”>
<option value=”0”>Please Select…</option>
<option value =”file1.doc”>File1.doc</option>
<option value =”file2.doc”>File2.docx</option>
<option value =”file3.doc”>File3.doc</option>
</select>
<input type=”button” name=”b_1” id=”b_1” value=”Print Selected File”>
All files will be Microsoft Word .doc or .docx files. The workstations are terminals and don’t have any office products installed. I just want to send a selected file directly to the terminals default printer with either JavaScript or PHP with "onclick" or "post" events.