[Zope] Uploading Images from a web from

Steve Spicklemire steve@spvi.com
Sat, 15 Sep 2001 19:56:56 -0500


Don't forget method="post"

<form name="" action="galleries/uploadImage.dtml"
method="post" enctype="multipart/form-data">

;-)

-steve

On Saturday, September 15, 2001, at 04:44 PM, Jan Lentfer wrote:

> Hi all,
>
> I have - I guess - a very basic problem.
> I want to upload a file through a web form.
> It is all still very basic.
>
> here is is my form:
> <form name="" action="galleries/uploadImage.dtml" 
> enctype="multipart/form-data">
>   <div align="center">
>     <p>
>       <input type="file" name="image" enctype="multipart/form-data">
>     </p>
>     <p>
>       <input type="submit" name="Button" value="upload">
>     </p>
>   </div>
> </form>
>