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

Home -> Community -> Usenet -> c.d.o.server -> Re: Simple question?

Re: Simple question?

From: Clifton Wood <cbwood_at_vt.edu>
Date: Tue, 08 Jun 1999 16:24:22 -0400
Message-ID: <375D7BF6.C1F9E8D5@vt.edu>


Wassim wrote:

> Hi all,
> Why there's no '</P>' and '</OPTION>' .. in HTP, and HTF Packages??
> (PL/SQL, OWS) Have i to use htp.print('</P>') each time or doing this by
> creating a stored procedure ?
> I really don't know why Oracle did forget them..

Wassim:

Even though HTML provides you with closing tags for most elements, many of them
are NOT necessary (except if you are on older browsers). So

<P>This is a paragraph.</P><P>This is another paragraph.</P>

Is the same as

<P>This is a paragraph.<P>This is another paragraph.

The same holds true with the <OPTION> tag. Actually, if you needed to close tags, I
would just do:

htp.print ( '</P>' ) whenever necessary rather than creating more stored procedures.
Hope this helps.

--



Clifton B. Wood
Programmer/Analyst for the Entomology Dept. of Va. Tech.
------------------ Thought of the Decade -------------------
windows98 = n. 64 patches to 32 bit extensions and a graphical shell for a 16 bit patch to an 8 bit operating system originally coded for a 4 bit microprocessor, written by a 2 bit company that can't stand 1 bit of competition. Received on Tue Jun 08 1999 - 15:24:22 CDT

Original text of this message

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