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

And the results I get with your code are here. Looks like the buttons are in the same table cell to me...

Replies are listed 'Best First'.
Re: Re^5: CGI question
by bkiahg (Pilgrim) on Apr 18, 2004 at 19:41 UTC
    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 ] ),

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

      Drop the square brackets and it works fine.