in reply to Image Button

The CGI.pm way...

use CGI 'submit'; print submit(-type=>'image', -src=>"blah.jpg",-name=>'');
:)

Almost a Perl hacker.
Dave AKA damian

I encourage you to email me

Replies are listed 'Best First'.
Re: Re: Image Button
by Anonymous Monk on Mar 17, 2001 at 03:15 UTC
    I tried that and it didn't work. It can't pick up the .pl script.
      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