Hi,
I want to create a HTML form where the user can upload an image file. This image file has to be stored in an ORACLE table. I am thinking about something like this:
: <form action=": method="post"
: enctype="multipart/form-data">
: <input type="hidden" name="..." value="...">
: Picture_ID: <input type="text" name="..." length=5>
: Picture_File: <input type="file" name="...">
: <input type="Submit" value="Store Picture Now">
: </form>
Has anybody ever encountered this problem? Any idea will be greatly appreciated!
Jeron
I want to create a HTML form where the user can upload an image file. This image file has to be stored in an ORACLE table. I am thinking about something like this:
: <form action=": method="post"
: enctype="multipart/form-data">
: <input type="hidden" name="..." value="...">
: Picture_ID: <input type="text" name="..." length=5>
: Picture_File: <input type="file" name="...">
: <input type="Submit" value="Store Picture Now">
: </form>
Has anybody ever encountered this problem? Any idea will be greatly appreciated!
Jeron