fatcodeguy
Programmer
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("<B>The first print</B>"
my_func(my_array); -- outputs table with array data
HTP.P("<B>The second print</B>"
I end up with
<B>The first print</B>
<B>The second print</B>
MY TABLE...
Make sense ??
Thanks for the help
HTP.P("<B>The first print</B>"
my_func(my_array); -- outputs table with array data
HTP.P("<B>The second print</B>"
I end up with
<B>The first print</B>
<B>The second print</B>
MY TABLE...
Make sense ??
Thanks for the help