Our users would like the ability to print the contents of the form that they are submitting (or have submitted). How would I go about making that adjustment?
Please please be specific, as I know nothing about PHP scripting.
Thank you so much!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You too, simple and elegant. The form is a mix of HTML and JAVA. You are encouraged to make all the customizations you need. If you require assistance in any attempts, feel free to post your issues here.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Our users would like the ability to print the contents of the form that they are submitting (or have submitted). How would I go about making that adjustment?
Please please be specific, as I know nothing about PHP scripting.
Thank you so much!
In the web browser choose File/Print before clicking submit. There a million ways to accomplish this but this is the simplest solution (no coding).
Thanks, TNT.
Simple and elegant! I think I'll go one more step and at least provide a button that will trigger the print dialog box.
<form>
<input type="button" value="Print this page" onClick="window.print()">
</form>
You too, simple and elegant. The form is a mix of HTML and JAVA. You are encouraged to make all the customizations you need. If you require assistance in any attempts, feel free to post your issues here.