http://qs321.pair.com?node_id=506684

Cockneyphil has asked for the wisdom of the Perl Monks concerning the following question:

Is it possible to upload images and other form data from the same form ?

Replies are listed 'Best First'.
Re: upload images and form data
by vishi83 (Pilgrim) on Nov 08, 2005 at 11:04 UTC

    You can probably look at w3schools.com ... or do an extensive search.. But this one not the rite place for such questions.. Anyway, to answer you query
    Its possible to do them from the same form

    regards,
    Vishi

    A perl Script without 'strict' is like a House without Roof; Both are not Safe;
Re: upload images and form data
by reasonablekeith (Deacon) on Nov 08, 2005 at 10:42 UTC
    Non Perl questions don't really go down very well here. Have a look at the html behind your favourite webmail service, they pretty much all do what you're asking.

    If you're writing a Perl cgi to accept the upload, have a search on here, try to get it working on your own, and then come back here with any problems you can't solve yourself.

    Cheers, Rob

    ---
    my name's not Keith, and I'm not reasonable.
Re: upload images and form data
by b10m (Vicar) on Nov 08, 2005 at 11:02 UTC

    Yes, just look at CGI (or CGI::Simple and the likes) and just try a few things on your server.

    --
    b10m

    All code is usually tested, but rarely trusted.
Re: upload images and form data
by pajout (Curate) on Nov 08, 2005 at 12:10 UTC
    man Apache::Request may give you other start point...