How to add a form?

G

Guest

Is it possible to add a form that my customers can fill out directly on the browser window and then just print the page with the information that they filled out(I dont need this form to be send to me as data). Also, lets say I start this form with a starting form number of 00001 how can I make this number update automatically everytime someone fills out print the information
Thank you
 
R

Ronx

One very simple, inaccurate, solution:
Change the form tag to:
<form onsubmit="window.print();return false;">
This will not save any data anywhere, and you rely on the user to send the
form. Also requires JavaScript to run on the browser.

or use <form blah...blah onsubmit="window.print();return true;">
where blah....blah is the method and action used to save results on the
server.

Include a FP hit counter on the page - the page count will be printed with
the form provided the users browser is set to print images.
The counter will be the number of times the page has been loaded/refreshed,
not the number of forms printed out.

For accuracy, you require server side processing, using asp, Perl/cgi, php
etc.

--
Ron

Reply only to group - all emails will be deleted unread.


EGarcia said:
Is it possible to add a form that my customers can fill out directly on
the browser window and then just print the page with the information that
they filled out(I dont need this form to be send to me as data). Also, lets
say I start this form with a starting form number of 00001 how can I make
this number update automatically everytime someone fills out print the
information?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top