Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> PL/SQL Programming problem (tables)

PL/SQL Programming problem (tables)

From: Vegard Tollefsen <vegard_at_hinux.hin.no>
Date: 1997/03/10
Message-ID: <Pine.LNX.3.96.970310132927.11689A-100000@hinux.hin.no>#1/1

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.

Received on Mon Mar 10 1997 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US