|
what's your question?
Are you wondering how to upload a file or how to store it?
You'll have to store it in your database as a byte[]
Depending on what db you're using, the type on the column is different. For MySQL, it's type 'text'
On the form, you'd need to encode it like:
ENCTYPE="multipart/form-data"
does that help?
|