Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Form parameters and owa_util.ident_arr array
Hie
I have script add_name which calls script add_name.
CREATE OR REPLACE procedure add_name
(
add varchar2 := NULL, rname varchar2 := NULL,
htp.htmlOpen; htp.headOpen; htp.title('Software'); htp.headClose; htp.bodyopen;
htp.formOpen('add_name');
htp.print('<input type="text" name="rname"'); htp.print('<input type="checkbox" name="rvalue" value="cat">'); htp.print('<input type="checkbox" name="rvalue" value="dog">'); htp.print('<input type="checkbox" name="rvalue" value="horse">'); htp.formSubmit('add','add');
IF add IS NOT NULL THEN
htp.print('You have chosen these items');
htp.print(''||rname);
for i in 1 .. rvalue.count loop
htp.p( '' || rvalue(i) );
htp.br;
end loop;
END IF;
END;
.........................
I hope you understand what I mean
Rami Huhtala Received on Mon Nov 19 2001 - 08:50:05 CST
![]() |
![]() |