Link to home
Start Free TrialLog in
Avatar of jtgraphic
jtgraphic

asked on

Signature Panel

Hello,

I'm Running Apache 2x, PHP 5x, and MySQL 4x

I want to make a signature panel interface for a web application (that will run from a tablet).  I know there is a Java applet called scribble that I can use for input, but I'm not sure how to use it in a form.

I'm thinking the process would work something like this:

-Input to signature panel
-Submit form
-Move post variable to MySQL blog file as a jpg

Any suggestions?
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
http://examples.oreilly.com/javanut/section1/Scribble.html
http://examples.oreilly.com/javanut/section1/Scribble.java

you would just need to add code to post the image to the server.
http://javaalmanac.com/egs/java.net/Post.html

You'd use something like a servlet on the server side to recieve the signature image.
:-)