i have this form i made with htp.p('');
htp.p('
<form>
<select multiple width="100%" style="width: 100%; height: 80%;">
');
for a in
(select id_plan, year_plan from plan)
loop
htp.p('
<option value="'||htf.escape_sc(a.id_plan)||'">'||htf.escape_sc(a.year_plan)||'</option>
end loop;
htp.p('</select>
<input type="submit" value="Submit">
</form>
');
i want to execute a pl/sql insert or update action when the form button is clicked.
is that possible ?
if so how?