htp-package problem

From: Rüdiger J. Schulz <johannes.schulz_at_web.de>
Date: 22 Oct 2001 16:14:17 +0200
Message-ID: <3bd429ba$1_at_netnews.web.de>



[Quoted] hi all,

I have the following procedure:

create or replace procedure htp_mult (pval varchar2 := '0') as
begin

   if pval = '0' then

      htp.print('<form>');
      htp.print('<action="http://adress/pls/verk/htp_mult");
      htp.print('method="post">');
      htp.print('<select name="wert" size=3 MULTIPLE>');
      htp.print('<option>one');
      htp.print('<option>two');
      htp.print('<option>three');
      htp.print('</select>');
      htp.print('<br><br><input type="submit" value="submit">');
      htp.print('</form>');
   else
      insert into test (erg, art) values (wert, 'option');
      commit;
      htp.print('Value '||pval||' inserted!');
   end if;
end;

now, if someone choose *more than one* value in the html-form, than I dont get [Quoted] these selected values, or better: I cant evaluate the multiple choice !!

does anybode know, how to make it within a plsql-procedure??

thanks in advance
Rüdiger J. Schulz
eMail: rjs_at_berlin.de

-- 
__________________________________________________________
News suchen, lesen, schreiben mit http://newsgroups.web.de
Received on Mon Oct 22 2001 - 16:14:17 CEST

Original text of this message