Help for this page

Select Code to Download


  1. or download this
    my $h = $sth->fetchrow_hashref; # error checking left out
    print <<END;
    ...
    <input type='submit' />
    </form>
    END
    
  2. or download this
    print(
      start_form,
    ...
      submit,
      end_form
    );
    
  3. or download this
    % my $h = $sth->fetchrow_hashref;
    <form>
    ...
    Notes: <textarea name='notes'><% $h->{notes} %></textarea>
    <input type='submit' />
    </form>