[Zope] Question from ZopeNewbies poster. . .

Jerome ALET Jerome.Alet@unice.fr
Fri, 30 Jun 2000 21:49:53 +0200


On Fri, Jun 30, 2000 at 10:13:37AM -0500, addyd@unk.edu wrote:
> problem is I can't insert the image at the insert form, and worse of all I
> don't know how to start. 

define your HTML form as:

<form action="your_dtml_method" method="POST" 
  enctype="multipart/form-data">
  Filename: <input type="file" name="myfile">
</form>

then in your_dtml_method REQUEST['file'] should contain your 
file contents IIRC.

good luck

Jerome Alet