Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PL/SQL - kinda weird

Status
Not open for further replies.

fatcodeguy

Programmer
Feb 25, 2002
281
CA
I'm using PL/SQL functions to generate HTML, and print them out (using ORACLE's WebDB/Portal HTP.P() function). If I try and print something, run a function (which also prints something) then print something again. The function output will come out after the last print command. EX:

HTP.P(&quot;<B>The first print</B>&quot;);
my_func(my_array); -- outputs table with array data
HTP.P(&quot;<B>The second print</B>&quot;);

I end up with
<B>The first print</B>
<B>The second print</B>
MY TABLE...
Make sense ??
Thanks for the help
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top