| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.misc -> get parameter from a html-<select ... multiple> - tag
how do I evaluate parameter from a <select...multipe>-html-tag in a
pl/sql-procedure?
here is the procedure:
procedure htp_mult (wert varchar2 := '0')
as
begin
if wert = '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>first');
htp.print('<option>second');
htp.print('<option>third');
htp.print('</select>');
htp.print('<br><br><input type="submit" value="Auswählen">');
htp.print('</form>');
else
insert into test (erg, art) values (wert, 'option');
commit;
htp.print('Wert '||wert||' eingetragen!');
htp.print('<br><br>zurück');
end if;
thanks in advance ...
Rüdiger J. Schulz
rjs_at_berlin.de
-- __________________________________________________________ News suchen, lesen, schreiben mit http://newsgroups.web.deReceived on Tue Oct 23 2001 - 03:49:18 CDT
![]() |
![]() |