Dear friends
i have creates l pl/sql region to create news with marque but it's doed not going up side properly.
my code below
DECLARE
REC INT_NEWS_MAS%rowtype;
begin
htp.p('
<html>
<body>
');
FOR REC IN (SELECT NEWS_ID,NEWS_NAME,NEWS_TYPE,DESCRIPTION FROM INT_NEWS_MAS WHERE ACTIVE_FLAG='Y'and ROWNUM <=5 )
LOOP
htp.p('<table WIDTH="300">
<tr>');
HTP.P('<td ><marquee behavior="scroll" direction="up" height ="15" scrollamount="2" scrolldelay="300" ><a target="_blank" href="f?p=&APP_ID.:243:&SESSION.::&DEBUG.::P243_NEWS_ID:'||REC.NEWS_ID||':" >'||REC.NEWS_NAME||'</a>
</marquee></td>');
HTP.P('</tr>
');
htp.p('
</TABLE>');
END LOOP;
htp.p('</body>
</html>');
end;
Please look below workspace
WORKSPACE : DEMO APP
USER NAME : NISHA.GROVER84@GMAIL.COM
PASSWORD : nishaarora
http://apex.oracle.com/pls/apex/f?p=28835:13:5985581425901:::::
Please check where i am wrong.
Thanks