in reply to Re: Image Button
in thread Image Button

I tried that and it didn't work. It can't pick up the .pl script.

Replies are listed 'Best First'.
Re: Re: Re: Image Button
by buckaduck (Chaplain) on Mar 17, 2001 at 04:29 UTC
    The submit function sends the form to the current script by default. If you want to send it to a different script (as it seems you do), add an action tag:
    print submit(-type=>'image',-src=>"blah.jpg",-name=>'',-action=>'yours +cript.pl');
    buckaduck