| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.misc -> PL/SQL Programming problem (tables)
Im trying to generate a html-page using PL/SQL. I want to put a 'pull down menu' in a table data cell. I tryed:
htp.tableData(
htp.formSelectOpen('name','Pick a player');
htp.formSelectOption('player1');
htp.formSelectOption('player2');
htp.formSelectOption('player3');
htp.formSelectOption('player4');
htp.formSelectClose;
This was not acceptable, as he did not want to detect the ';'-sign in line 2.
A similar example would be appreciated. Thanks.
![]() |
![]() |