Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Simple question?
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.
--
------------------ 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
![]() |
![]() |