PDA

View Full Version : Form Question


plockyer
11-04-03, 09:49 AM
I would like to create an order form that people can fill out on the site but print so that it can be faxed or mailed. So instead of a submit button I would like to have a print button.

Also when they hit the print button I would like the information they filled out on the site to be stored in a database so I can see who is printing the form and when?

Any idea's of how I can do this?

mdhall
11-04-03, 01:41 PM
Javascript to print a page...JavaScript print page...

<a href='java_script_:;' onClick='window.print();return false'>Print this page.</a>

To go into a database, the form info has to be passed to a script which queries the db and inserts the information. If yu post your form's code, I'm sure we can help you set it up.