in reply to Re^5: CGI question
in thread CGI question

That code uses the concentated version that I got to work. Change
$q->td( [ $q->submit (-value=>'Submit') . ' ' . $q->reset ] ),

to
$q->td( [ $q->submit (-value=>'Submit'), $q->reset ] ),

Replies are listed 'Best First'.
Re^7: CGI question
by blue_cowdawg (Monsignor) on Apr 18, 2004 at 19:48 UTC

        to
        $q->td( [ $q->submit (-value=>'Submit'), $q->reset ] ),

    Drop the square brackets and it works fine.